Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: chrome/common/view_types.h

Issue 164458: Land http://codereview.chromium.org/159067: (Closed)
Patch Set: undo docs Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/extensions/bindings_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2006-2009 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 #ifndef CHROME_COMMON_VIEW_TYPES_H_
6 #define CHROME_COMMON_VIEW_TYPES_H_
7
8 #include "base/basictypes.h"
9
10 // Indicates different types of views
11 class ViewType {
12 public:
13 enum Type {
14 INVALID,
15 TAB_CONTENTS,
16 EXTENSION_TOOLSTRIP,
17 EXTENSION_BACKGROUND_PAGE,
18 DEV_TOOLS_UI,
19 INTERSTITIAL_PAGE,
20 };
21
22 private:
23 // This class is for scoping only, so you shouldn't create an instance of it.
24 ViewType() {}
25
26 DISALLOW_COPY_AND_ASSIGN(ViewType);
27 };
28
29 #endif // CHROME_COMMON_VIEW_TYPES_H_
OLDNEW
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/extensions/bindings_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698