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

Unified Diff: chrome/app/child_stubs.cc

Issue 17619005: Create top-level separate targets for browser and child dlls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GpuMain to child Created 7 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/app/child_stubs.cc
diff --git a/chrome/app/child_stubs.cc b/chrome/app/child_stubs.cc
new file mode 100644
index 0000000000000000000000000000000000000000..09cbdb417f40fb04ae11fd1c6777319e71a893b6
--- /dev/null
+++ b/chrome/app/child_stubs.cc
@@ -0,0 +1,28 @@
+// 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
jam 2013/07/17 16:23:37 i have a very strong aversion to stub files. can w
scottmg 2013/07/17 16:49:35 pulled required bluetooth into device_bluetooth_co
jam 2013/07/17 18:09:58 device/bluetooth seems like it's code that should
+// the caller seems like it probably belongs in the browser. (?)
+
+#include "base/logging.h"
+#include "device/bluetooth/bluetooth_adapter_factory.h"
+#include "device/bluetooth/bluetooth_utils.h"
+
+namespace device {
+
+scoped_refptr<BluetoothAdapter> BluetoothAdapterFactory::MaybeGetAdapter() {
+ NOTREACHED();
+ return NULL;
+}
+
+namespace bluetooth_utils {
+
+std::string CanonicalUuid(std::string uuid) {
+ NOTREACHED();
+ return "";
+}
+
+} // namespace bluetooth_utils
+
+} // namespace device
« no previous file with comments | « build/common.gypi ('k') | chrome/app/chrome_main_delegate.cc » ('j') | chrome/chrome_dll.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698