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

Side by Side Diff: chrome/common/extensions/extension_constants.h

Issue 7432006: Add an experimental permissions API for extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 extern const char* kLaunchWidth; 48 extern const char* kLaunchWidth;
49 extern const char* kLayouts; 49 extern const char* kLayouts;
50 extern const char* kMatches; 50 extern const char* kMatches;
51 extern const char* kMinimumChromeVersion; 51 extern const char* kMinimumChromeVersion;
52 extern const char* kNaClModules; 52 extern const char* kNaClModules;
53 extern const char* kNaClModulesMIMEType; 53 extern const char* kNaClModulesMIMEType;
54 extern const char* kNaClModulesPath; 54 extern const char* kNaClModulesPath;
55 extern const char* kName; 55 extern const char* kName;
56 extern const char* kOmnibox; 56 extern const char* kOmnibox;
57 extern const char* kOmniboxKeyword; 57 extern const char* kOmniboxKeyword;
58 extern const char* kOptionalPermissions;
58 extern const char* kOptionsPage; 59 extern const char* kOptionsPage;
59 extern const char* kPageAction; 60 extern const char* kPageAction;
60 extern const char* kPageActionDefaultIcon; 61 extern const char* kPageActionDefaultIcon;
61 extern const char* kPageActionDefaultPopup; 62 extern const char* kPageActionDefaultPopup;
62 extern const char* kPageActionDefaultTitle; 63 extern const char* kPageActionDefaultTitle;
63 extern const char* kPageActionIcons; 64 extern const char* kPageActionIcons;
64 extern const char* kPageActionId; 65 extern const char* kPageActionId;
65 extern const char* kPageActionPopup; 66 extern const char* kPageActionPopup;
66 extern const char* kPageActionPopupHeight; 67 extern const char* kPageActionPopupHeight;
67 extern const char* kPageActionPopupPath; 68 extern const char* kPageActionPopupPath;
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 INSTALL_CAUSE_UNSET = 0, 405 INSTALL_CAUSE_UNSET = 0,
405 INSTALL_CAUSE_USER_DOWNLOAD, 406 INSTALL_CAUSE_USER_DOWNLOAD,
406 INSTALL_CAUSE_UPDATE, 407 INSTALL_CAUSE_UPDATE,
407 INSTALL_CAUSE_EXTERNAL_FILE, 408 INSTALL_CAUSE_EXTERNAL_FILE,
408 INSTALL_CAUSE_AUTOMATION, 409 INSTALL_CAUSE_AUTOMATION,
409 NUM_INSTALL_CAUSES 410 NUM_INSTALL_CAUSES
410 }; 411 };
411 } // extension_misc 412 } // extension_misc
412 413
413 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 414 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698