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

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

Issue 22794012: Rename extension_manifest_keys namespace to extensions::manifest_keys. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | 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/manifest_url_handler.h" 5 #include "chrome/common/extensions/manifest_url_handler.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "chrome/common/chrome_constants.h" 14 #include "chrome/common/chrome_constants.h"
15 #include "chrome/common/extensions/extension_file_util.h" 15 #include "chrome/common/extensions/extension_file_util.h"
16 #include "chrome/common/extensions/extension_manifest_constants.h" 16 #include "chrome/common/extensions/extension_manifest_constants.h"
17 #include "chrome/common/extensions/manifest.h" 17 #include "chrome/common/extensions/manifest.h"
18 #include "chrome/common/extensions/permissions/api_permission.h" 18 #include "chrome/common/extensions/permissions/api_permission.h"
19 #include "chrome/common/extensions/permissions/api_permission_set.h" 19 #include "chrome/common/extensions/permissions/api_permission_set.h"
20 #include "chrome/common/extensions/permissions/permissions_data.h" 20 #include "chrome/common/extensions/permissions/permissions_data.h"
21 #include "chrome/common/url_constants.h" 21 #include "chrome/common/url_constants.h"
22 #include "extensions/common/error_utils.h" 22 #include "extensions/common/error_utils.h"
23 #include "grit/generated_resources.h" 23 #include "grit/generated_resources.h"
24 #include "ui/base/l10n/l10n_util.h" 24 #include "ui/base/l10n/l10n_util.h"
25 25
26 #if defined(USE_AURA) 26 #if defined(USE_AURA)
27 #include "ui/keyboard/keyboard_constants.h" 27 #include "ui/keyboard/keyboard_constants.h"
28 #endif 28 #endif
29 29
30 namespace keys = extension_manifest_keys; 30 namespace keys = extensions::manifest_keys;
31 namespace errors = extension_manifest_errors; 31 namespace errors = extension_manifest_errors;
32 32
33 namespace extensions { 33 namespace extensions {
34 34
35 namespace { 35 namespace {
36 36
37 const char kOverrideExtentUrlPatternFormat[] = "chrome://%s/*"; 37 const char kOverrideExtentUrlPatternFormat[] = "chrome://%s/*";
38 38
39 const GURL& GetManifestURL(const Extension* extension, 39 const GURL& GetManifestURL(const Extension* extension,
40 const std::string& key) { 40 const std::string& key) {
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 extension->SetManifestData(keys::kChromeURLOverrides, 321 extension->SetManifestData(keys::kChromeURLOverrides,
322 url_overrides.release()); 322 url_overrides.release());
323 return true; 323 return true;
324 } 324 }
325 325
326 const std::vector<std::string> URLOverridesHandler::Keys() const { 326 const std::vector<std::string> URLOverridesHandler::Keys() const {
327 return SingleKey(keys::kChromeURLOverrides); 327 return SingleKey(keys::kChromeURLOverrides);
328 } 328 }
329 329
330 } // namespace extensions 330 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/common/extensions/manifest_unittest.cc ('k') | chrome/common/extensions/mime_types_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698