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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // 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
6 // the caller seems like it probably belongs in the browser. (?)
7
8 #include "base/logging.h"
9 #include "device/bluetooth/bluetooth_adapter_factory.h"
10 #include "device/bluetooth/bluetooth_utils.h"
11
12 namespace device {
13
14 scoped_refptr<BluetoothAdapter> BluetoothAdapterFactory::MaybeGetAdapter() {
15 NOTREACHED();
16 return NULL;
17 }
18
19 namespace bluetooth_utils {
20
21 std::string CanonicalUuid(std::string uuid) {
22 NOTREACHED();
23 return "";
24 }
25
26 } // namespace bluetooth_utils
27
28 } // namespace device
OLDNEW
« 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