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

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

Issue 15612002: Make sure the google wallet in-app payment support app is always installed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change logic to decide which apps to show in chrome://extensions Created 7 years, 7 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 #include "chrome/common/extensions/extension_constants.h" 5 #include "chrome/common/extensions/extension_constants.h"
6 #include "chrome/common/extensions/extension_manifest_constants.h" 6 #include "chrome/common/extensions/extension_manifest_constants.h"
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 const char kCroshBuiltinAppId[] = "nkoccljplnhpfnfiajclkommnmllphnl"; 143 const char kCroshBuiltinAppId[] = "nkoccljplnhpfnfiajclkommnmllphnl";
144 const char kQuickOfficeComponentExtensionId[] = 144 const char kQuickOfficeComponentExtensionId[] =
145 "bpmcpldpdmajfigpchkicefoigmkfalc"; 145 "bpmcpldpdmajfigpchkicefoigmkfalc";
146 const char kQuickOfficeDevExtensionId[] = "ionpfmkccalenbmnddpbmocokhaknphg"; 146 const char kQuickOfficeDevExtensionId[] = "ionpfmkccalenbmnddpbmocokhaknphg";
147 const char kQuickOfficeExtensionId[] = "gbkeegbaiigmenfmjfclcdgdpimamgkj"; 147 const char kQuickOfficeExtensionId[] = "gbkeegbaiigmenfmjfclcdgdpimamgkj";
148 const char kSettingsAppId[] = "ennkphjdgehloodpbhlhldgbnhmacadg"; 148 const char kSettingsAppId[] = "ennkphjdgehloodpbhlhldgbnhmacadg";
149 const char kStreamsPrivateTestExtensionId[] = 149 const char kStreamsPrivateTestExtensionId[] =
150 "oickdpebdnfbgkcaoklfcdhjniefkcji"; 150 "oickdpebdnfbgkcaoklfcdhjniefkcji";
151 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; 151 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb";
152 const char kYoutubeAppId[] = "blpcfgokakmgnkcojhhkbfbldkacnbeo"; 152 const char kYoutubeAppId[] = "blpcfgokakmgnkcojhhkbfbldkacnbeo";
153 const char kIAPSupportAppId[] = "nmmhkkegccagdldgiimedpiccmgmieda";
153 154
154 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; 155 const char kAppLaunchHistogram[] = "Extensions.AppLaunch";
155 const char kPlatformAppLaunchHistogram[] = "Apps.AppLaunch"; 156 const char kPlatformAppLaunchHistogram[] = "Apps.AppLaunch";
156 #if defined(OS_CHROMEOS) 157 #if defined(OS_CHROMEOS)
157 const char kChromeVoxExtensionPath[] = 158 const char kChromeVoxExtensionPath[] =
158 "/usr/share/chromeos-assets/accessibility/extensions/access_chromevox"; 159 "/usr/share/chromeos-assets/accessibility/extensions/access_chromevox";
159 const char kSpeechSynthesisExtensionPath[] = 160 const char kSpeechSynthesisExtensionPath[] =
160 "/usr/share/chromeos-assets/speech_synthesis/patts"; 161 "/usr/share/chromeos-assets/speech_synthesis/patts";
161 const char kSpeechSynthesisExtensionId[] = 162 const char kSpeechSynthesisExtensionId[] =
162 "gjjabgpgjpampikjhjpfhneeoapjbjaf"; 163 "gjjabgpgjpampikjhjpfhneeoapjbjaf";
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 196
196 const int kScriptBadgeIconSizes[] = { 197 const int kScriptBadgeIconSizes[] = {
197 EXTENSION_ICON_BITTY, // 16 198 EXTENSION_ICON_BITTY, // 16
198 2 * EXTENSION_ICON_BITTY // 32 199 2 * EXTENSION_ICON_BITTY // 32
199 }; 200 };
200 201
201 const size_t kNumScriptBadgeIconSizes = 202 const size_t kNumScriptBadgeIconSizes =
202 arraysize(kScriptBadgeIconSizes); 203 arraysize(kScriptBadgeIconSizes);
203 204
204 } // namespace extension_misc 205 } // namespace extension_misc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698