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

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

Issue 10756018: Merge grd files in ui/resources and chrome/app/theme (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, *_standard.rc Created 8 years, 5 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/chrome_tests.gypi ('k') | chrome/test/gpu/test_support_gpu.gypi » ('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) 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 27 matching lines...) Expand all
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/permissions/permissions_info.h" 40 #include "chrome/common/extensions/permissions/permissions_info.h"
41 #include "chrome/common/extensions/url_pattern_set.h" 41 #include "chrome/common/extensions/url_pattern_set.h"
42 #include "chrome/common/extensions/user_script.h" 42 #include "chrome/common/extensions/user_script.h"
43 #include "chrome/common/url_constants.h" 43 #include "chrome/common/url_constants.h"
44 #include "crypto/sha2.h" 44 #include "crypto/sha2.h"
45 #include "googleurl/src/url_util.h" 45 #include "googleurl/src/url_util.h"
46 #include "grit/chromium_strings.h" 46 #include "grit/chromium_strings.h"
47 #include "grit/generated_resources.h" 47 #include "grit/generated_resources.h"
48 #include "grit/theme_resources_standard.h" 48 #include "grit/theme_resources.h"
49 #include "net/base/registry_controlled_domain.h" 49 #include "net/base/registry_controlled_domain.h"
50 #include "third_party/skia/include/core/SkBitmap.h" 50 #include "third_party/skia/include/core/SkBitmap.h"
51 #include "ui/base/keycodes/keyboard_codes.h" 51 #include "ui/base/keycodes/keyboard_codes.h"
52 #include "ui/base/l10n/l10n_util.h" 52 #include "ui/base/l10n/l10n_util.h"
53 #include "ui/base/resource/resource_bundle.h" 53 #include "ui/base/resource/resource_bundle.h"
54 #include "webkit/glue/image_decoder.h" 54 #include "webkit/glue/image_decoder.h"
55 #include "webkit/glue/web_intent_service_data.h" 55 #include "webkit/glue/web_intent_service_data.h"
56 56
57 #if defined(OS_WIN) 57 #if defined(OS_WIN)
58 #include "base/win/metro.h" 58 #include "base/win/metro.h"
(...skipping 3812 matching lines...) Expand 10 before | Expand all | Expand 10 after
3871 3871
3872 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo( 3872 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo(
3873 const Extension* extension, 3873 const Extension* extension,
3874 const PermissionSet* permissions, 3874 const PermissionSet* permissions,
3875 Reason reason) 3875 Reason reason)
3876 : reason(reason), 3876 : reason(reason),
3877 extension(extension), 3877 extension(extension),
3878 permissions(permissions) {} 3878 permissions(permissions) {}
3879 3879
3880 } // namespace extensions 3880 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/gpu/test_support_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698