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

Side by Side Diff: chrome/browser/extensions/api/webstore/webstore_api.h

Issue 245443005: Move IPC::MessageFilter and router to a separate file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix gn build Created 6 years, 8 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 | « no previous file | chrome/renderer/media/cast_ipc_dispatcher.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_WEBSTORE_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_WEBSTORE_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_WEBSTORE_API_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_WEBSTORE_API_H_
7 7
8 #include <list> 8 #include <list>
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/scoped_observer.h" 12 #include "base/scoped_observer.h"
13 #include "chrome/browser/extensions/install_observer.h" 13 #include "chrome/browser/extensions/install_observer.h"
14 #include "chrome/common/extensions/api/webstore/webstore_api_constants.h" 14 #include "chrome/common/extensions/api/webstore/webstore_api_constants.h"
15 #include "extensions/browser/browser_context_keyed_api_factory.h" 15 #include "extensions/browser/browser_context_keyed_api_factory.h"
16 #include "extensions/browser/event_router.h" 16 #include "extensions/browser/event_router.h"
17 17
18 namespace base { 18 namespace base {
19 class ListValue; 19 class ListValue;
20 } 20 }
21 21
22 namespace content { 22 namespace content {
23 class BrowserContext; 23 class BrowserContext;
24 } 24 }
25 25
26 namespace ipc { 26 namespace IPC {
27 class Sender; 27 class Sender;
28 } 28 }
29 29
30 namespace extensions { 30 namespace extensions {
31 class InstallTracker; 31 class InstallTracker;
32 32
33 class WebstoreAPI : public BrowserContextKeyedAPI, 33 class WebstoreAPI : public BrowserContextKeyedAPI,
34 public InstallObserver { 34 public InstallObserver {
35 public: 35 public:
36 explicit WebstoreAPI(content::BrowserContext* browser_context); 36 explicit WebstoreAPI(content::BrowserContext* browser_context);
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 content::BrowserContext* browser_context_; 95 content::BrowserContext* browser_context_;
96 scoped_ptr<ScopedObserver<InstallTracker, InstallObserver> > 96 scoped_ptr<ScopedObserver<InstallTracker, InstallObserver> >
97 install_observer_; 97 install_observer_;
98 98
99 DISALLOW_COPY_AND_ASSIGN(WebstoreAPI); 99 DISALLOW_COPY_AND_ASSIGN(WebstoreAPI);
100 }; 100 };
101 101
102 } // namespace extensions 102 } // namespace extensions
103 103
104 #endif // CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_WEBSTORE_API_H_ 104 #endif // CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_WEBSTORE_API_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/media/cast_ipc_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698