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

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

Issue 467113004: Adds a skeleton component app for Always-On Hotwording opt-in flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 // The extension id of the HTerm dev app for ChromeOS. 110 // The extension id of the HTerm dev app for ChromeOS.
111 extern const char kHTermDevAppId[]; 111 extern const char kHTermDevAppId[];
112 112
113 // The extension id of the Identity API UI application. 113 // The extension id of the Identity API UI application.
114 extern const char kIdentityApiUiAppId[]; 114 extern const char kIdentityApiUiAppId[];
115 115
116 // The extension id of the Crosh component app for ChromeOS. 116 // The extension id of the Crosh component app for ChromeOS.
117 extern const char kCroshBuiltinAppId[]; 117 extern const char kCroshBuiltinAppId[];
118 118
119 // The extension id of the hotword audio verification dialogue extension.
120 extern const char kHotwordAudioVerificationExtensionId[];
rpetterson 2014/08/19 18:55:29 Should this be an App rather an an Extension?
kcarattini 2014/08/20 03:13:27 Done.
121
119 // The extension id of the hotword voice search trigger extension. 122 // The extension id of the hotword voice search trigger extension.
120 extern const char kHotwordExtensionId[]; 123 extern const char kHotwordExtensionId[];
121 124
122 // The extension id of the PDF extension. 125 // The extension id of the PDF extension.
123 extern const char kPdfExtensionId[]; 126 extern const char kPdfExtensionId[];
124 127
125 // The extension id of the Office Viewer component extension. 128 // The extension id of the Office Viewer component extension.
126 extern const char kQuickOfficeComponentExtensionId[]; 129 extern const char kQuickOfficeComponentExtensionId[];
127 130
128 // The extension id of the Office Viewer extension on the internal webstore. 131 // The extension id of the Office Viewer extension on the internal webstore.
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 LAUNCH_CONTAINER_PANEL, 328 LAUNCH_CONTAINER_PANEL,
326 LAUNCH_CONTAINER_TAB, 329 LAUNCH_CONTAINER_TAB,
327 // For platform apps, which don't actually have a container (they just get a 330 // For platform apps, which don't actually have a container (they just get a
328 // "onLaunched" event). 331 // "onLaunched" event).
329 LAUNCH_CONTAINER_NONE 332 LAUNCH_CONTAINER_NONE
330 }; 333 };
331 334
332 } // namespace extensions 335 } // namespace extensions
333 336
334 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 337 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698