Index: chrome/app/child_stubs.cc |
diff --git a/chrome/app/child_stubs.cc b/chrome/app/child_stubs.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..348cdc0f0c839e772b0c5cc76f2c2b659630445c |
--- /dev/null |
+++ b/chrome/app/child_stubs.cc |
@@ -0,0 +1,16 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// TODO(scottmg): http://crbug.com/237249 This is called from common, but |
+// the caller should be moved to the browser. |
+ |
+#include "device/bluetooth/bluetooth_adapter_factory.h" |
+ |
+namespace device { |
+ |
+scoped_refptr<BluetoothAdapter> BluetoothAdapterFactory::MaybeGetAdapter() { |
+ return NULL; |
+} |
+ |
+} // namespace device |