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

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

Issue 22938005: Add ErrorConsole UI for Extension Install Warnings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dc_ec_install_warnings
Patch Set: Requested UI Changes 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
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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 const char kTtsVoicesLang[] = "lang"; 141 const char kTtsVoicesLang[] = "lang";
142 const char kTtsVoicesVoiceName[] = "voice_name"; 142 const char kTtsVoicesVoiceName[] = "voice_name";
143 const char kType[] = "type"; 143 const char kType[] = "type";
144 const char kUpdateURL[] = "update_url"; 144 const char kUpdateURL[] = "update_url";
145 const char kVersion[] = "version"; 145 const char kVersion[] = "version";
146 const char kWebAccessibleResources[] = "web_accessible_resources"; 146 const char kWebAccessibleResources[] = "web_accessible_resources";
147 const char kWebURLs[] = "app.urls"; 147 const char kWebURLs[] = "app.urls";
148 148
149 } // namespace manifest_keys 149 } // namespace manifest_keys
150 150
151 namespace manifest_errors {
152
153 const char kPermissionUnknownOrMalformed[] =
154 "Permission '*' is unknown or URL pattern is malformed.";
155 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'.";
156
157 } // namespace manifest_errors
158
151 } // namespace extensions 159 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698