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

Side by Side Diff: extensions/browser/process_manager.h

Issue 2106073006: [Extensions] Pull ExtensionId into its own file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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_BROWSER_PROCESS_MANAGER_H_ 5 #ifndef EXTENSIONS_BROWSER_PROCESS_MANAGER_H_
6 #define EXTENSIONS_BROWSER_PROCESS_MANAGER_H_ 6 #define EXTENSIONS_BROWSER_PROCESS_MANAGER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 13
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
18 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
19 #include "base/observer_list.h" 19 #include "base/observer_list.h"
20 #include "components/keyed_service/core/keyed_service.h" 20 #include "components/keyed_service/core/keyed_service.h"
21 #include "content/public/browser/notification_observer.h" 21 #include "content/public/browser/notification_observer.h"
22 #include "content/public/browser/notification_registrar.h" 22 #include "content/public/browser/notification_registrar.h"
23 #include "extensions/browser/event_page_tracker.h" 23 #include "extensions/browser/event_page_tracker.h"
24 #include "extensions/browser/extension_registry_observer.h" 24 #include "extensions/browser/extension_registry_observer.h"
25 #include "extensions/common/extension.h" 25 #include "extensions/common/extension_id.h"
26 #include "extensions/common/view_type.h" 26 #include "extensions/common/view_type.h"
27 27
28 class GURL; 28 class GURL;
29 29
30 namespace content { 30 namespace content {
31 class BrowserContext; 31 class BrowserContext;
32 class DevToolsAgentHost; 32 class DevToolsAgentHost;
33 class RenderFrameHost; 33 class RenderFrameHost;
34 class SiteInstance; 34 class SiteInstance;
35 class WebContents; 35 class WebContents;
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 330
331 // Must be last member, see doc on WeakPtrFactory. 331 // Must be last member, see doc on WeakPtrFactory.
332 base::WeakPtrFactory<ProcessManager> weak_ptr_factory_; 332 base::WeakPtrFactory<ProcessManager> weak_ptr_factory_;
333 333
334 DISALLOW_COPY_AND_ASSIGN(ProcessManager); 334 DISALLOW_COPY_AND_ASSIGN(ProcessManager);
335 }; 335 };
336 336
337 } // namespace extensions 337 } // namespace extensions
338 338
339 #endif // EXTENSIONS_BROWSER_PROCESS_MANAGER_H_ 339 #endif // EXTENSIONS_BROWSER_PROCESS_MANAGER_H_
OLDNEW
« no previous file with comments | « extensions/browser/content_hash_fetcher.h ('k') | extensions/browser/value_store/legacy_value_store_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698