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

Unified Diff: chrome/browser/extensions/extension_preference_api_constants.h

Issue 9566007: Initial Managed Mode extension API, supporting querying the setting and a stub for enabling the mod… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fixed API test.js Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_preference_api_constants.h
===================================================================
--- chrome/browser/extensions/extension_preference_api_constants.h (revision 124628)
+++ chrome/browser/extensions/extension_preference_api_constants.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// 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.
@@ -12,6 +12,16 @@
extern const char kIncognitoKey[];
extern const char kScopeKey[];
+extern const char kIncognitoSpecific[];
+extern const char kLevelOfControl[];
+extern const char kValue[];
Finnur 2012/03/05 10:45:02 Are these just regular keys like the ones above? I
+
+// Values for levelOfControl.
+extern const char kNotControllable[];
Finnur 2012/03/05 10:45:02 This should be last in this section.
+extern const char kControlledByOtherExtensions[];
+extern const char kControllableByThisExtension[];
+extern const char kControlledByThisExtension[];
+
// Errors.
extern const char kIncognitoErrorMessage[];
extern const char kIncognitoSessionOnlyErrorMessage[];

Powered by Google App Engine
This is Rietveld 408576698