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

Side by Side Diff: extensions/common/manifest_constants.cc

Issue 23847004: "Redirecting URLs to Packaged Apps" implementation: revised (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a few TODOs Created 7 years, 3 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
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "extensions/common/manifest_constants.h" 5 #include "extensions/common/manifest_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace manifest_keys { 9 namespace manifest_keys {
10 10
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 const char kTtsVoicesEventTypeMarker[] = "marker"; 136 const char kTtsVoicesEventTypeMarker[] = "marker";
137 const char kTtsVoicesEventTypeSentence[] = "sentence"; 137 const char kTtsVoicesEventTypeSentence[] = "sentence";
138 const char kTtsVoicesEventTypeStart[] = "start"; 138 const char kTtsVoicesEventTypeStart[] = "start";
139 const char kTtsVoicesEventTypeWord[] = "word"; 139 const char kTtsVoicesEventTypeWord[] = "word";
140 const char kTtsVoicesEventTypes[] = "event_types"; 140 const char kTtsVoicesEventTypes[] = "event_types";
141 const char kTtsVoicesGender[] = "gender"; 141 const char kTtsVoicesGender[] = "gender";
142 const char kTtsVoicesLang[] = "lang"; 142 const char kTtsVoicesLang[] = "lang";
143 const char kTtsVoicesVoiceName[] = "voice_name"; 143 const char kTtsVoicesVoiceName[] = "voice_name";
144 const char kType[] = "type"; 144 const char kType[] = "type";
145 const char kUpdateURL[] = "update_url"; 145 const char kUpdateURL[] = "update_url";
146 const char kUrlHandlers[] = "url_handlers";
147 const char kUrlHandlerTitle[] = "title";
146 const char kVersion[] = "version"; 148 const char kVersion[] = "version";
147 const char kWebAccessibleResources[] = "web_accessible_resources"; 149 const char kWebAccessibleResources[] = "web_accessible_resources";
148 const char kWebURLs[] = "app.urls"; 150 const char kWebURLs[] = "app.urls";
149 151
150 } // namespace manifest_keys 152 } // namespace manifest_keys
151 153
152 namespace manifest_errors { 154 namespace manifest_errors {
153 155
154 const char kPermissionUnknownOrMalformed[] = 156 const char kPermissionUnknownOrMalformed[] =
155 "Permission '*' is unknown or URL pattern is malformed."; 157 "Permission '*' is unknown or URL pattern is malformed.";
156 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'."; 158 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'.";
157 159
158 } // namespace manifest_errors 160 } // namespace manifest_errors
159 161
160 } // namespace extensions 162 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698