blob: 0a986fc3934347e2fe867ae9c6d98697b484f18e [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_COMMON_VIEW_TYPE_H_
#define EXTENSIONS_COMMON_VIEW_TYPE_H_
#include <string>
namespace extensions {
// Icky RTTI used by a few systems to distinguish the host type of a given
// WebContents.
//
// Do not change or reuse the the entry values in this list as this is used in
// ExtensionViewType enum in tools/metrics/histograms/enums.xml.
//
// TODO(aa): Remove this and teach those systems to keep track of their own
// data.
enum ViewType {
VIEW_TYPE_INVALID = 0,
VIEW_TYPE_APP_WINDOW = 1,
VIEW_TYPE_BACKGROUND_CONTENTS = 2,
// For custom parts of Chrome if no other type applies.
VIEW_TYPE_COMPONENT = 3,
VIEW_TYPE_EXTENSION_BACKGROUND_PAGE = 4,
VIEW_TYPE_EXTENSION_DIALOG = 5,
VIEW_TYPE_EXTENSION_GUEST = 6,
VIEW_TYPE_EXTENSION_POPUP = 7,
// Panels were removed in https://crbug.com/571511.
// DEPRECATED_VIEW_TYPE_PANEL = 8,
VIEW_TYPE_TAB_CONTENTS = 9,
VIEW_TYPE_LAST = VIEW_TYPE_TAB_CONTENTS
};
// Matches the |view_type| to the corresponding ViewType, and populates
// |view_type_out|. Returns true if a match is found.
bool GetViewTypeFromString(const std::string& view_type,
ViewType* view_type_out);
} // namespace extensions
#endif // EXTENSIONS_COMMON_VIEW_TYPE_H_