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

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

Issue 22001002: Use the connectivity diagnostics launcher so that it can open as an App (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix manifest Created 7 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 247
248 APP_LAUNCH_BUCKET_BOUNDARY, 248 APP_LAUNCH_BUCKET_BOUNDARY,
249 APP_LAUNCH_BUCKET_INVALID 249 APP_LAUNCH_BUCKET_INVALID
250 }; 250 };
251 251
252 #if defined(OS_CHROMEOS) 252 #if defined(OS_CHROMEOS)
253 // Path to preinstalled ChromeVox screen reader extension. 253 // Path to preinstalled ChromeVox screen reader extension.
254 extern const char kChromeVoxExtensionPath[]; 254 extern const char kChromeVoxExtensionPath[];
255 // Path to preinstalled Connectivity Diagnostics extension. 255 // Path to preinstalled Connectivity Diagnostics extension.
256 extern const char kConnectivityDiagnosticsPath[]; 256 extern const char kConnectivityDiagnosticsPath[];
257 extern const char kConnectivityDiagnosticsLauncherPath[];
257 // Path to preinstalled speech synthesis extension. 258 // Path to preinstalled speech synthesis extension.
258 extern const char kSpeechSynthesisExtensionPath[]; 259 extern const char kSpeechSynthesisExtensionPath[];
259 // The extension id of the speech synthesis extension. 260 // The extension id of the speech synthesis extension.
260 extern const char kSpeechSynthesisExtensionId[]; 261 extern const char kSpeechSynthesisExtensionId[];
261 // The extension id of the wallpaper manager application. 262 // The extension id of the wallpaper manager application.
262 extern const char kWallpaperManagerId[]; 263 extern const char kWallpaperManagerId[];
263 #endif 264 #endif
264 265
265 // What causes an extension to be installed? Used in histograms, so don't 266 // What causes an extension to be installed? Used in histograms, so don't
266 // change existing values. 267 // change existing values.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 // List of sizes for extension icons that can be defined in the manifest. 315 // List of sizes for extension icons that can be defined in the manifest.
315 extern const int kExtensionActionIconSizes[]; 316 extern const int kExtensionActionIconSizes[];
316 extern const size_t kNumExtensionActionIconSizes; 317 extern const size_t kNumExtensionActionIconSizes;
317 318
318 // List of sizes for extension icons that can be defined in the manifest. 319 // List of sizes for extension icons that can be defined in the manifest.
319 extern const int kScriptBadgeIconSizes[]; 320 extern const int kScriptBadgeIconSizes[];
320 extern const size_t kNumScriptBadgeIconSizes; 321 extern const size_t kNumScriptBadgeIconSizes;
321 } // namespace extension_misc 322 } // namespace extension_misc
322 323
323 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 324 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698