summaryrefslogtreecommitdiffstats
path: root/extensions/common/common_manifest_handlers.cc
diff options
context:
space:
mode:
authorjamescook <jamescook@chromium.org>2014-10-06 11:24:33 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-06 18:26:27 +0000
commit05f4202d5a3a9b15423c7fa39048e74a63b18b78 (patch)
tree8418cce429ddf7fc3967aa556835e81a16a1cf8d /extensions/common/common_manifest_handlers.cc
parent64eb6a88870692c31c7e292da9ad30432bd4dc93 (diff)
downloadchromium_src-05f4202d5a3a9b15423c7fa39048e74a63b18b78.zip
chromium_src-05f4202d5a3a9b15423c7fa39048e74a63b18b78.tar.gz
chromium_src-05f4202d5a3a9b15423c7fa39048e74a63b18b78.tar.bz2
Clean up extensions manifest and API features for bluetooth
The definitions were left in //chrome but belong in //extensions. No functional changes. BUG=none TEST=existing browser_tests and extensions_unittests Review URL: https://codereview.chromium.org/626693004 Cr-Commit-Position: refs/heads/master@{#298282}
Diffstat (limited to 'extensions/common/common_manifest_handlers.cc')
-rw-r--r--extensions/common/common_manifest_handlers.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/common/common_manifest_handlers.cc b/extensions/common/common_manifest_handlers.cc
index 9fac1bb..b624680 100644
--- a/extensions/common/common_manifest_handlers.cc
+++ b/extensions/common/common_manifest_handlers.cc
@@ -4,6 +4,7 @@
#include "extensions/common/common_manifest_handlers.h"
+#include "extensions/common/api/bluetooth/bluetooth_manifest_handler.h"
#include "extensions/common/api/sockets/sockets_manifest_handler.h"
#include "extensions/common/manifest_handler.h"
#include "extensions/common/manifest_handlers/background_info.h"
@@ -27,6 +28,7 @@ void RegisterCommonManifestHandlers() {
DCHECK(!ManifestHandler::IsRegistrationFinalized());
#if defined(ENABLE_EXTENSIONS)
(new BackgroundManifestHandler)->Register();
+ (new BluetoothManifestHandler)->Register();
(new CSPHandler(false))->Register();
(new CSPHandler(true))->Register();
(new ExternallyConnectableHandler)->Register();