Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(933)

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

Issue 10642014: grd file update for new 2x assets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mac search hint 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 <ostream> 7 #include <ostream>
8 8
9 #include "base/base64.h" 9 #include "base/base64.h"
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 26 matching lines...) Expand all
37 #include "chrome/common/extensions/features/simple_feature_provider.h" 37 #include "chrome/common/extensions/features/simple_feature_provider.h"
38 #include "chrome/common/extensions/file_browser_handler.h" 38 #include "chrome/common/extensions/file_browser_handler.h"
39 #include "chrome/common/extensions/manifest.h" 39 #include "chrome/common/extensions/manifest.h"
40 #include "chrome/common/extensions/url_pattern_set.h" 40 #include "chrome/common/extensions/url_pattern_set.h"
41 #include "chrome/common/extensions/user_script.h" 41 #include "chrome/common/extensions/user_script.h"
42 #include "chrome/common/url_constants.h" 42 #include "chrome/common/url_constants.h"
43 #include "crypto/sha2.h" 43 #include "crypto/sha2.h"
44 #include "googleurl/src/url_util.h" 44 #include "googleurl/src/url_util.h"
45 #include "grit/chromium_strings.h" 45 #include "grit/chromium_strings.h"
46 #include "grit/generated_resources.h" 46 #include "grit/generated_resources.h"
47 #include "grit/theme_resources.h" 47 #include "grit/theme_resources_standard.h"
48 #include "net/base/registry_controlled_domain.h" 48 #include "net/base/registry_controlled_domain.h"
49 #include "third_party/skia/include/core/SkBitmap.h" 49 #include "third_party/skia/include/core/SkBitmap.h"
50 #include "ui/base/keycodes/keyboard_codes.h" 50 #include "ui/base/keycodes/keyboard_codes.h"
51 #include "ui/base/l10n/l10n_util.h" 51 #include "ui/base/l10n/l10n_util.h"
52 #include "ui/base/resource/resource_bundle.h" 52 #include "ui/base/resource/resource_bundle.h"
53 #include "webkit/glue/image_decoder.h" 53 #include "webkit/glue/image_decoder.h"
54 #include "webkit/glue/web_intent_service_data.h" 54 #include "webkit/glue/web_intent_service_data.h"
55 55
56 #if defined(OS_WIN) 56 #if defined(OS_WIN)
57 #include "base/win/metro.h" 57 #include "base/win/metro.h"
(...skipping 3798 matching lines...) Expand 10 before | Expand all | Expand 10 after
3856 3856
3857 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo( 3857 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo(
3858 const Extension* extension, 3858 const Extension* extension,
3859 const ExtensionPermissionSet* permissions, 3859 const ExtensionPermissionSet* permissions,
3860 Reason reason) 3860 Reason reason)
3861 : reason(reason), 3861 : reason(reason),
3862 extension(extension), 3862 extension(extension),
3863 permissions(permissions) {} 3863 permissions(permissions) {}
3864 3864
3865 } // namespace extensions 3865 } // 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