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

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

Issue 673663004: Android: Do not build any extensions code except for extensions_constants. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zoom_controller
Patch Set: fix merge conflict Created 6 years, 1 month 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
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/common/extension_api_stub.cc » ('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 #ifndef EXTENSIONS_COMMON_EXTENSION_H_ 5 #ifndef EXTENSIONS_COMMON_EXTENSION_H_
6 #define EXTENSIONS_COMMON_EXTENSION_H_ 6 #define EXTENSIONS_COMMON_EXTENSION_H_
7 7
8 #include <algorithm> 8 #include <algorithm>
9 #include <iosfwd> 9 #include <iosfwd>
10 #include <map> 10 #include <map>
(...skipping 10 matching lines...) Expand all
21 #include "base/synchronization/lock.h" 21 #include "base/synchronization/lock.h"
22 #include "base/threading/thread_checker.h" 22 #include "base/threading/thread_checker.h"
23 #include "extensions/common/extension_resource.h" 23 #include "extensions/common/extension_resource.h"
24 #include "extensions/common/install_warning.h" 24 #include "extensions/common/install_warning.h"
25 #include "extensions/common/manifest.h" 25 #include "extensions/common/manifest.h"
26 #include "extensions/common/url_pattern_set.h" 26 #include "extensions/common/url_pattern_set.h"
27 #include "ui/base/accelerators/accelerator.h" 27 #include "ui/base/accelerators/accelerator.h"
28 #include "ui/gfx/size.h" 28 #include "ui/gfx/size.h"
29 #include "url/gurl.h" 29 #include "url/gurl.h"
30 30
31 #if !defined(ENABLE_EXTENSIONS)
32 #error "Extensions must be enabled"
33 #endif
34
31 namespace base { 35 namespace base {
32 class DictionaryValue; 36 class DictionaryValue;
33 class Version; 37 class Version;
34 } 38 }
35 39
36 namespace extensions { 40 namespace extensions {
37 class PermissionSet; 41 class PermissionSet;
38 class PermissionsData; 42 class PermissionsData;
39 class PermissionsParser; 43 class PermissionsParser;
40 44
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 568
565 UpdatedExtensionPermissionsInfo( 569 UpdatedExtensionPermissionsInfo(
566 const Extension* extension, 570 const Extension* extension,
567 const PermissionSet* permissions, 571 const PermissionSet* permissions,
568 Reason reason); 572 Reason reason);
569 }; 573 };
570 574
571 } // namespace extensions 575 } // namespace extensions
572 576
573 #endif // EXTENSIONS_COMMON_EXTENSION_H_ 577 #endif // EXTENSIONS_COMMON_EXTENSION_H_
OLDNEW
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/common/extension_api_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698