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

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

Issue 10827057: Plumb file system name down from MediaFileSystemRegistry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 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 | 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 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 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 244
245 // The states that an app can be in, as reported by chrome.app.installState 245 // The states that an app can be in, as reported by chrome.app.installState
246 // and chrome.app.runningState. 246 // and chrome.app.runningState.
247 extern const char kAppStateNotInstalled[]; 247 extern const char kAppStateNotInstalled[];
248 extern const char kAppStateInstalled[]; 248 extern const char kAppStateInstalled[];
249 extern const char kAppStateDisabled[]; 249 extern const char kAppStateDisabled[];
250 extern const char kAppStateRunning[]; 250 extern const char kAppStateRunning[];
251 extern const char kAppStateCannotRun[]; 251 extern const char kAppStateCannotRun[];
252 extern const char kAppStateReadyToRun[]; 252 extern const char kAppStateReadyToRun[];
253 253
254 // The path part of the file system url used for media file systems.
255 extern const char kMediaFileSystemPathPart[];
256
254 // Error indicating that the app notifications API is not accessible by split 257 // Error indicating that the app notifications API is not accessible by split
255 // mode extensions in incognito windows. 258 // mode extensions in incognito windows.
256 extern const char kAppNotificationsIncognitoError[]; 259 extern const char kAppNotificationsIncognitoError[];
257 } // extension_misc 260 } // extension_misc
258 261
259 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 262 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/media_gallery/media_file_system_registry.cc ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698