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

Side by Side Diff: chrome/browser/chromeos/bluetooth/bluetooth_socket.cc

Issue 10007008: Add support for creating bluetooth RFCOMM sockets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reupload off of proper base Created 8 years, 8 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 (c) 2012 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 #include "chrome/browser/chromeos/bluetooth/bluetooth_socket.h"
6
7 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h"
8
9 namespace chromeos {
10
11 BluetoothSocket::BluetoothSocket(
12 BluetoothDevice* device, const std::string& service_uuid, int fd)
13 : device_(device), service_uuid_(service_uuid), fd_(fd) {}
keybuk 2012/04/19 01:05:40 place initializers on separate lines for clarity
14
15 BluetoothSocket::~BluetoothSocket() {
16 // close the socket
17 NOTREACHED() << "NIY";
18 }
19
20 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698