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

Unified Diff: chrome/browser/extensions/extension_service.h

Issue 9822001: Basic infrastructure for the Bluetooth API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more review comments Created 8 years, 9 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/extension_service.h
diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
index 50e531d30b387802deaaa469827260afc8e0e831..bbf433b1afe76b0d60e3062aec309a2f750b0469 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -67,6 +67,7 @@ class SyncData;
class Version;
namespace chromeos {
+class ExtensionBluetoothEventRouter;
class ExtensionInputMethodEventRouter;
}
@@ -471,6 +472,9 @@ class ExtensionService
}
#if defined(OS_CHROMEOS)
+ chromeos::ExtensionBluetoothEventRouter* bluetooth_event_router() {
+ return bluetooth_event_router_.get();
+ }
chromeos::ExtensionInputMethodEventRouter* input_method_event_router() {
return input_method_event_router_.get();
}
@@ -801,6 +805,7 @@ class ExtensionService
scoped_ptr<ExtensionWebNavigationEventRouter> web_navigation_event_router_;
#if defined(OS_CHROMEOS)
+ scoped_ptr<chromeos::ExtensionBluetoothEventRouter> bluetooth_event_router_;
scoped_ptr<chromeos::ExtensionInputMethodEventRouter>
input_method_event_router_;
#endif

Powered by Google App Engine
This is Rietveld 408576698