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

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

Issue 2760403003: Remove enable_media_router. (Closed)
Patch Set: . Created 3 years, 8 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/BUILD.gn ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 // The extension id of the hotword shared module. 94 // The extension id of the hotword shared module.
95 extern const char kHotwordSharedModuleId[]; 95 extern const char kHotwordSharedModuleId[];
96 96
97 // The extension id of the Youtube application. 97 // The extension id of the Youtube application.
98 extern const char kYoutubeAppId[]; 98 extern const char kYoutubeAppId[];
99 99
100 // The extension id of the in-app payments support application. 100 // The extension id of the in-app payments support application.
101 extern const char kInAppPaymentsSupportAppId[]; 101 extern const char kInAppPaymentsSupportAppId[];
102 102
103 #if defined(ENABLE_MEDIA_ROUTER)
104 // The extension id of the stable media router extension. 103 // The extension id of the stable media router extension.
105 extern const char kMediaRouterStableExtensionId[]; 104 extern const char kMediaRouterStableExtensionId[];
106 #endif // defined(ENABLE_MEDIA_ROUTER)
107 105
108 // The buckets used for app launches. 106 // The buckets used for app launches.
109 enum AppLaunchBucket { 107 enum AppLaunchBucket {
110 // Launch from NTP apps section while maximized. 108 // Launch from NTP apps section while maximized.
111 APP_LAUNCH_NTP_APPS_MAXIMIZED, 109 APP_LAUNCH_NTP_APPS_MAXIMIZED,
112 110
113 // Launch from NTP apps section while collapsed. 111 // Launch from NTP apps section while collapsed.
114 APP_LAUNCH_NTP_APPS_COLLAPSED, 112 APP_LAUNCH_NTP_APPS_COLLAPSED,
115 113
116 // Launch from NTP apps section while in menu mode. 114 // Launch from NTP apps section while in menu mode.
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 extern const char kAppStateDisabled[]; 249 extern const char kAppStateDisabled[];
252 extern const char kAppStateRunning[]; 250 extern const char kAppStateRunning[];
253 extern const char kAppStateCannotRun[]; 251 extern const char kAppStateCannotRun[];
254 extern const char kAppStateReadyToRun[]; 252 extern const char kAppStateReadyToRun[];
255 253
256 // The path part of the file system url used for media file systems. 254 // The path part of the file system url used for media file systems.
257 extern const char kMediaFileSystemPathPart[]; 255 extern const char kMediaFileSystemPathPart[];
258 } // namespace extension_misc 256 } // namespace extension_misc
259 257
260 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 258 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698