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

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

Issue 2499803002: Remove unused linked_ptr include in extension.h (Closed)
Patch Set: Created 4 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 | « chrome/browser/background/background_mode_manager.h ('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) 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 <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/linked_ptr.h"
17 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
18 #include "base/threading/thread_checker.h" 17 #include "base/threading/thread_checker.h"
19 #include "extensions/common/extension_id.h" 18 #include "extensions/common/extension_id.h"
20 #include "extensions/common/extension_resource.h" 19 #include "extensions/common/extension_resource.h"
21 #include "extensions/common/install_warning.h" 20 #include "extensions/common/install_warning.h"
22 #include "extensions/common/manifest.h" 21 #include "extensions/common/manifest.h"
23 #include "extensions/common/url_pattern_set.h" 22 #include "extensions/common/url_pattern_set.h"
24 #include "url/gurl.h" 23 #include "url/gurl.h"
25 24
26 #if !defined(ENABLE_EXTENSIONS) 25 #if !defined(ENABLE_EXTENSIONS)
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 const PermissionSet& permissions; 557 const PermissionSet& permissions;
559 558
560 UpdatedExtensionPermissionsInfo(const Extension* extension, 559 UpdatedExtensionPermissionsInfo(const Extension* extension,
561 const PermissionSet& permissions, 560 const PermissionSet& permissions,
562 Reason reason); 561 Reason reason);
563 }; 562 };
564 563
565 } // namespace extensions 564 } // namespace extensions
566 565
567 #endif // EXTENSIONS_COMMON_EXTENSION_H_ 566 #endif // EXTENSIONS_COMMON_EXTENSION_H_
OLDNEW
« no previous file with comments | « chrome/browser/background/background_mode_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698