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

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

Issue 10656014: Merge 143605 - grd file update for new 2x assets (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 6 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 | « chrome/browser/upgrade_detector.cc ('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 (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/extension.h" 5 #include "chrome/common/extensions/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/file_path.h" 10 #include "base/file_path.h"
(...skipping 23 matching lines...) Expand all
34 #include "chrome/common/extensions/features/feature.h" 34 #include "chrome/common/extensions/features/feature.h"
35 #include "chrome/common/extensions/features/simple_feature_provider.h" 35 #include "chrome/common/extensions/features/simple_feature_provider.h"
36 #include "chrome/common/extensions/file_browser_handler.h" 36 #include "chrome/common/extensions/file_browser_handler.h"
37 #include "chrome/common/extensions/manifest.h" 37 #include "chrome/common/extensions/manifest.h"
38 #include "chrome/common/extensions/user_script.h" 38 #include "chrome/common/extensions/user_script.h"
39 #include "chrome/common/url_constants.h" 39 #include "chrome/common/url_constants.h"
40 #include "crypto/sha2.h" 40 #include "crypto/sha2.h"
41 #include "googleurl/src/url_util.h" 41 #include "googleurl/src/url_util.h"
42 #include "grit/chromium_strings.h" 42 #include "grit/chromium_strings.h"
43 #include "grit/generated_resources.h" 43 #include "grit/generated_resources.h"
44 #include "grit/theme_resources.h" 44 #include "grit/theme_resources_standard.h"
45 #include "net/base/registry_controlled_domain.h" 45 #include "net/base/registry_controlled_domain.h"
46 #include "third_party/skia/include/core/SkBitmap.h" 46 #include "third_party/skia/include/core/SkBitmap.h"
47 #include "ui/base/keycodes/keyboard_codes.h" 47 #include "ui/base/keycodes/keyboard_codes.h"
48 #include "ui/base/l10n/l10n_util.h" 48 #include "ui/base/l10n/l10n_util.h"
49 #include "ui/base/resource/resource_bundle.h" 49 #include "ui/base/resource/resource_bundle.h"
50 #include "webkit/glue/image_decoder.h" 50 #include "webkit/glue/image_decoder.h"
51 #include "webkit/glue/web_intent_service_data.h" 51 #include "webkit/glue/web_intent_service_data.h"
52 52
53 #if defined(OS_WIN) 53 #if defined(OS_WIN)
54 #include "base/win/metro.h" 54 #include "base/win/metro.h"
(...skipping 3742 matching lines...) Expand 10 before | Expand all | Expand 10 after
3797 3797
3798 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo( 3798 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo(
3799 const Extension* extension, 3799 const Extension* extension,
3800 const ExtensionPermissionSet* permissions, 3800 const ExtensionPermissionSet* permissions,
3801 Reason reason) 3801 Reason reason)
3802 : reason(reason), 3802 : reason(reason),
3803 extension(extension), 3803 extension(extension),
3804 permissions(permissions) {} 3804 permissions(permissions) {}
3805 3805
3806 } // namespace extensions 3806 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/upgrade_detector.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698