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

Side by Side Diff: extensions/common/constants.h

Issue 106713002: Move LaunchContainer enum to extension_constants.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ 5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_
6 #define EXTENSIONS_COMMON_CONSTANTS_H_ 6 #define EXTENSIONS_COMMON_CONSTANTS_H_
7 7
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 9
10 namespace extensions { 10 namespace extensions {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 extern const char kManagedSettingsDirectoryName[]; 76 extern const char kManagedSettingsDirectoryName[];
77 77
78 // The name of the database inside the profile where chrome-internal 78 // The name of the database inside the profile where chrome-internal
79 // extension state resides. 79 // extension state resides.
80 extern const char kStateStoreName[]; 80 extern const char kStateStoreName[];
81 81
82 // The name of the database inside the profile where declarative extension 82 // The name of the database inside the profile where declarative extension
83 // rules are stored. 83 // rules are stored.
84 extern const char kRulesStoreName[]; 84 extern const char kRulesStoreName[];
85 85
86 // Don't remove items or change the order of this enum. It's used in
87 // histograms and preferences.
88 // TODO(derat): Move this to chrome/browser/extensions/launch_util.h?
89 enum LaunchContainer {
90 LAUNCH_WINDOW,
91 LAUNCH_PANEL,
92 LAUNCH_TAB,
93 // For platform apps, which don't actually have a container (they just get a
94 // "onLaunched" event).
95 LAUNCH_NONE
96 };
97
98 } // namespace extensions 86 } // namespace extensions
99 87
100 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ 88 #endif // EXTENSIONS_COMMON_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/test/remoting/remote_desktop_browsertest.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698