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

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

Issue 220253002: Add net/base/filename_util.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « content/test/webui_resource_browsertest.cc ('k') | net/base/filename_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/extension.h" 5 #include "extensions/common/extension.h"
6 6
7 #include "base/base64.h" 7 #include "base/base64.h"
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 16 matching lines...) Expand all
27 #include "extensions/common/manifest.h" 27 #include "extensions/common/manifest.h"
28 #include "extensions/common/manifest_constants.h" 28 #include "extensions/common/manifest_constants.h"
29 #include "extensions/common/manifest_handler.h" 29 #include "extensions/common/manifest_handler.h"
30 #include "extensions/common/permissions/api_permission_set.h" 30 #include "extensions/common/permissions/api_permission_set.h"
31 #include "extensions/common/permissions/permission_set.h" 31 #include "extensions/common/permissions/permission_set.h"
32 #include "extensions/common/permissions/permissions_data.h" 32 #include "extensions/common/permissions/permissions_data.h"
33 #include "extensions/common/permissions/permissions_info.h" 33 #include "extensions/common/permissions/permissions_info.h"
34 #include "extensions/common/switches.h" 34 #include "extensions/common/switches.h"
35 #include "extensions/common/url_pattern_set.h" 35 #include "extensions/common/url_pattern_set.h"
36 #include "grit/chromium_strings.h" 36 #include "grit/chromium_strings.h"
37 #include "net/base/net_util.h" 37 #include "net/base/filename_util.h"
38 #include "url/url_util.h" 38 #include "url/url_util.h"
39 39
40 #if defined(OS_WIN) 40 #if defined(OS_WIN)
41 #include "grit/generated_resources.h" 41 #include "grit/generated_resources.h"
42 #endif 42 #endif
43 43
44 namespace extensions { 44 namespace extensions {
45 45
46 namespace keys = manifest_keys; 46 namespace keys = manifest_keys;
47 namespace values = manifest_values; 47 namespace values = manifest_values;
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 786
787 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo( 787 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo(
788 const Extension* extension, 788 const Extension* extension,
789 const PermissionSet* permissions, 789 const PermissionSet* permissions,
790 Reason reason) 790 Reason reason)
791 : reason(reason), 791 : reason(reason),
792 extension(extension), 792 extension(extension),
793 permissions(permissions) {} 793 permissions(permissions) {}
794 794
795 } // namespace extensions 795 } // namespace extensions
OLDNEW
« no previous file with comments | « content/test/webui_resource_browsertest.cc ('k') | net/base/filename_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698