1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "extensions/common/view_type.h"
6
7namespace extensions {
8
9const char kViewTypeTabContents[] = "TAB";
10const char kViewTypeBackgroundPage[] = "BACKGROUND";
11const char kViewTypePopup[] = "POPUP";
12const char kViewTypePanel[] = "PANEL";
13const char kViewTypeInfobar[] = "INFOBAR";
14const char kViewTypeExtensionDialog[] = "EXTENSION_DIALOG";
15const char kViewTypeAppWindow[] = "APP_WINDOW";
16const char kViewTypeLauncherPage[] = "LAUNCHER_PAGE";
17const char kViewTypeAll[] = "ALL";
18
19}  // namespace extensions
20