blob: a58524f9970a2f3afbdb0620ac481b2902447ea7 [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 the order of entries or remove entries 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,
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_