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

Unified Diff: chrome/browser/extensions/api/api_resource_event_notifier.h

Issue 10696208: Move ExtensionEventRouter and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed bug + latest master 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/api_resource_event_notifier.h
diff --git a/chrome/browser/extensions/api/api_resource_event_notifier.h b/chrome/browser/extensions/api/api_resource_event_notifier.h
index 9767e3c8f5ccf8bf55141d17c387a34c271e82ad..9ed81894ec4ce19db4449e18e9004d971893f8e2 100644
--- a/chrome/browser/extensions/api/api_resource_event_notifier.h
+++ b/chrome/browser/extensions/api/api_resource_event_notifier.h
@@ -13,7 +13,6 @@
#include "chrome/browser/usb/usb_device.h"
#include "googleurl/src/gurl.h"
-class ExtensionEventRouter;
class Profile;
namespace base {
@@ -21,6 +20,7 @@ class ListValue;
}
namespace extensions {
+class EventRouter;
enum ApiResourceEventType {
API_RESOURCE_EVENT_CONNECT_COMPLETE,
@@ -36,7 +36,7 @@ extern const char kSrcIdKey[];
class ApiResourceEventNotifier
: public base::RefCountedThreadSafe<ApiResourceEventNotifier> {
public:
- ApiResourceEventNotifier(ExtensionEventRouter* router,
+ ApiResourceEventNotifier(EventRouter* router,
Profile* profile,
const std::string& src_extension_id, int src_id,
const GURL& src_url);
@@ -73,7 +73,7 @@ class ApiResourceEventNotifier
ApiResourceEventType event_type,
int result_code);
- ExtensionEventRouter* router_;
+ EventRouter* router_;
Profile* profile_;
std::string src_extension_id_;
int src_id_;
« no previous file with comments | « chrome/browser/extensions/api/alarms/alarm_manager.cc ('k') | chrome/browser/extensions/api/api_resource_event_notifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698