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

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

Issue 8198003: Convert app_launch_index and page_index from int to StringOrdinal. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 2 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 #include "chrome/common/extensions/extension_constants.h" 5 #include "chrome/common/extensions/extension_constants.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/string_util.h" 10 #include "base/string_util.h"
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 491
492 // The file to write our decoded message catalogs to, relative to the 492 // The file to write our decoded message catalogs to, relative to the
493 // extension_path. 493 // extension_path.
494 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; 494 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS";
495 } 495 }
496 496
497 namespace extension_misc { 497 namespace extension_misc {
498 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; 498 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno";
499 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; 499 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb";
500 const char* kCloudPrintAppId = "mfehgcgbbipciphmccgaenjidiccnmng"; 500 const char* kCloudPrintAppId = "mfehgcgbbipciphmccgaenjidiccnmng";
501 const char* kUnsetIndex = "-1";
501 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; 502 const char* kAppsPromoHistogram = "Extensions.AppsPromo";
502 const char* kAppLaunchHistogram = "Extensions.AppLaunch"; 503 const char* kAppLaunchHistogram = "Extensions.AppLaunch";
503 #if defined(OS_CHROMEOS) 504 #if defined(OS_CHROMEOS)
504 const char* kAccessExtensionPath = 505 const char* kAccessExtensionPath =
505 "/usr/share/chromeos-assets/accessibility/extensions"; 506 "/usr/share/chromeos-assets/accessibility/extensions";
506 const char* kChromeVoxDirectoryName = "access_chromevox"; 507 const char* kChromeVoxDirectoryName = "access_chromevox";
507 #endif 508 #endif
508 509
509 } 510 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698