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

Issue 10899037: Refactoring bluetooth API code. (Closed)

Created:
8 years, 3 months ago by youngki
Modified:
8 years, 2 months ago
CC:
chromium-reviews, mihaip-chromium-reviews_chromium.org, nkostylev+watch_chromium.org, Aaron Boodman, oshima+watch_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org
Visibility:
Public.

Description

Renames the classes in chrome/browser/chromeos/bluetooth/ ChromeOs-specific (i.e. BluetoothAdapter => BluetoothAdapterChromeOs) and creating interfaces: BluetoothAdapter and BluetoothDevice. This CL does the Step 1 & 2 of: 1) Renames the classes in chrome/browser/chromeos/bluetooth/ chromeos-specific (i.e. BluetoothAdapter => BluetoothAdapterChromeOs) 2) Create interfaces of the classes in chrome/browser/chromeos/bluetooth/. These interfaces will be used in the platform-independent logics. 3) Move everything out of chrome/browser/chromeos/bluetooth/ into devices/bluetooth/ since the code is no longer specific to linux/chromeos. 4) Add Windows implementations. (i.e. Create BluetoothAdapterWindows) BUG=135470 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=159615

Patch Set 1 #

Patch Set 2 : Created interfaces for BluetoothAdapter and BluetoothDevice. #

Patch Set 3 : Updated the interfaces with class-level comments. #

Total comments: 4

Patch Set 4 : Overridden methods are no longer inline. #

Patch Set 5 : Added #include <string> into bluetooth_adapter_dbus.cc. #

Total comments: 34

Patch Set 6 : Renaming to BluetoothAdapter. #

Patch Set 7 : Fixing styles and tess. #

Total comments: 79

Patch Set 8 : Rename to BluetoothAdapterChromeOs #

Total comments: 50

Patch Set 9 : A #

Total comments: 34

Patch Set 10 : B #

Patch Set 11 : C #

Patch Set 12 : C #

Total comments: 12

Patch Set 13 : D #

Patch Set 14 : E #

Total comments: 12

Patch Set 15 : F #

Patch Set 16 : G #

Total comments: 2

Patch Set 17 : H #

Patch Set 18 : I #

Total comments: 14

Patch Set 19 : Made some functions inline. #

Patch Set 20 : Reverted making the functions inline. #

Patch Set 21 : Removed ASSERT_TRUE checks. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+981 lines, -4520 lines) Patch
M chrome/browser/chromeos/bluetooth/bluetooth_adapter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 4 chunks +31 lines, -219 lines 0 comments Download
M chrome/browser/chromeos/bluetooth/bluetooth_adapter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 1 chunk +6 lines, -550 lines 0 comments Download
A + chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 5 chunks +44 lines, -155 lines 0 comments Download
A + chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 22 chunks +92 lines, -117 lines 0 comments Download
A + chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 80 chunks +194 lines, -88 lines 0 comments Download
A + chrome/browser/chromeos/bluetooth/bluetooth_adapter_devices_chromeos_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 12 chunks +25 lines, -16 lines 0 comments Download
D chrome/browser/chromeos/bluetooth/bluetooth_adapter_devices_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -208 lines 0 comments Download
A chrome/browser/chromeos/bluetooth/bluetooth_adapter_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +32 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/bluetooth/bluetooth_adapter_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +44 lines, -0 lines 0 comments Download
D chrome/browser/chromeos/bluetooth/bluetooth_adapter_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -1447 lines 0 comments Download
M chrome/browser/chromeos/bluetooth/bluetooth_device.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 19 9 chunks +52 lines, -351 lines 0 comments Download
M chrome/browser/chromeos/bluetooth/bluetooth_device.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 19 3 chunks +48 lines, -682 lines 0 comments Download
A + chrome/browser/chromeos/bluetooth/bluetooth_device_chromeos.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +60 lines, -302 lines 0 comments Download
A + chrome/browser/chromeos/bluetooth/bluetooth_device_chromeos.cc View 1 2 3 4 5 6 7 8 33 chunks +167 lines, -244 lines 0 comments Download
M chrome/browser/chromeos/bluetooth/bluetooth_service_record.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/bluetooth/bluetooth_socket.h View 1 2 3 4 5 6 7 8 9 1 chunk +9 lines, -21 lines 0 comments Download
D chrome/browser/chromeos/bluetooth/bluetooth_socket.cc View 1 chunk +0 lines, -62 lines 0 comments Download
A chrome/browser/chromeos/bluetooth/bluetooth_socket_chromeos.h View 1 2 3 4 5 6 7 8 1 chunk +40 lines, -0 lines 0 comments Download
A + chrome/browser/chromeos/bluetooth/bluetooth_socket_chromeos.cc View 1 2 3 4 5 6 7 4 chunks +13 lines, -7 lines 0 comments Download
M chrome/browser/chromeos/bluetooth/test/mock_bluetooth_adapter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +14 lines, -9 lines 0 comments Download
M chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.h View 1 2 3 4 5 6 7 8 3 chunks +29 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.cc View 1 2 3 4 5 6 7 8 2 chunks +9 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/extensions/bluetooth_event_router.cc View 1 2 3 4 5 6 7 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/system/ash_system_tray_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_api.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +8 lines, -3 lines 0 comments Download
M chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h View 1 2 3 4 5 6 7 4 chunks +13 lines, -14 lines 0 comments Download
M chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc View 1 2 3 4 5 6 7 2 chunks +2 lines, -1 line 0 comments Download
M chrome/chrome_browser_chromeos.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +8 lines, -1 line 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -2 lines 0 comments Download
M chromeos/chromeos.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
M chromeos/dbus/bluetooth_out_of_band_client.h View 1 1 chunk +1 line, -12 lines 0 comments Download
M chromeos/dbus/bluetooth_out_of_band_client.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
A chromeos/dbus/bluetooth_out_of_band_pairing_data.h View 1 1 chunk +27 lines, -0 lines 0 comments Download
M chromeos/dbus/mock_bluetooth_out_of_band_client.h View 1 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 60 (0 generated)
youngki
Hi Bryan, I renamed the files with *_dbus and bluetooth_socket_posix.{h|cc} according to your suggestion. Please ...
8 years, 3 months ago (2012-09-06 19:43:03 UTC) #1
youngki
CC'ing Kevin.
8 years, 3 months ago (2012-09-07 14:15:05 UTC) #2
kevers
http://codereview.chromium.org/10899037/diff/12001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h (right): http://codereview.chromium.org/10899037/diff/12001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h#newcode92 chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h:92: virtual const std::string& address() const { return address_; } ...
8 years, 3 months ago (2012-09-07 15:39:25 UTC) #3
youngki
Now the overridden methods are no longer inline and annotated with OVERRIDE. http://codereview.chromium.org/10899037/diff/12001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h ...
8 years, 3 months ago (2012-09-07 18:18:37 UTC) #4
bryeung
https://chromiumcodereview.appspot.com/10899037/diff/12001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.cc File chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.cc (right): https://chromiumcodereview.appspot.com/10899037/diff/12001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.cc#newcode12 chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.cc:12: #include "chrome/browser/chromeos/bluetooth/bluetooth_device_dbus.h" can this use only the BluetoothDeviceInterface instead? ...
8 years, 3 months ago (2012-09-07 18:35:57 UTC) #5
youngki
Comments all addressed. PTAL. I left all the method-level comments in bluetooth_adapter_dbus.h and bluetooth_device_dbus.h. I ...
8 years, 3 months ago (2012-09-13 18:05:02 UTC) #6
bryeung
http://codereview.chromium.org/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (left): http://codereview.chromium.org/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#oldcode155 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:155: static scoped_refptr<BluetoothAdapter> DefaultAdapter(); this should probably still be in ...
8 years, 3 months ago (2012-09-13 19:52:57 UTC) #7
keybuk
https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (left): https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#oldcode34 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:34: // generic "default adapter" which may change depending on ...
8 years, 3 months ago (2012-09-13 23:57:30 UTC) #8
bryeung
Scott: one question about naming (inline). https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h (right): https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h#newcode24 chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h:24: class BluetoothDeviceDBus; On ...
8 years, 3 months ago (2012-09-14 12:00:21 UTC) #9
youngki
http://codereview.chromium.org/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (left): http://codereview.chromium.org/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#oldcode155 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:155: static scoped_refptr<BluetoothAdapter> DefaultAdapter(); On 2012/09/13 23:57:30, keybuk wrote: > ...
8 years, 3 months ago (2012-09-14 15:26:12 UTC) #10
keybuk
https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h (right): https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h#newcode24 chrome/browser/chromeos/bluetooth/bluetooth_adapter_dbus.h:24: class BluetoothDeviceDBus; Yes, even on Linux the implementation will ...
8 years, 3 months ago (2012-09-14 17:13:17 UTC) #11
keybuk
http://codereview.chromium.org/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (left): http://codereview.chromium.org/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#oldcode155 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:155: static scoped_refptr<BluetoothAdapter> DefaultAdapter(); sgtm
8 years, 3 months ago (2012-09-14 17:16:36 UTC) #12
youngki
https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (left): https://chromiumcodereview.appspot.com/10899037/diff/13049/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#oldcode34 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:34: // generic "default adapter" which may change depending on ...
8 years, 3 months ago (2012-09-17 21:53:02 UTC) #13
keybuk
https://codereview.chromium.org/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): https://codereview.chromium.org/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode20 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:20: // The BluetoothAdapter represents a local Bluetooth adapter which ...
8 years, 3 months ago (2012-09-17 22:19:43 UTC) #14
youngki
https://chromiumcodereview.appspot.com/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): https://chromiumcodereview.appspot.com/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode20 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:20: // The BluetoothAdapter represents a local Bluetooth adapter which ...
8 years, 3 months ago (2012-09-18 18:19:55 UTC) #15
keybuk
8 years, 3 months ago (2012-09-18 18:41:59 UTC) #16
keybuk1
https://chromiumcodereview.appspot.com/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h (right): https://chromiumcodereview.appspot.com/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h#newcode26 chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h:26: struct BluetoothOutOfBandPairingData; On 2012/09/18 18:19:56, youngki wrote: > On ...
8 years, 3 months ago (2012-09-18 18:42:29 UTC) #17
keybuk
http://codereview.chromium.org/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h (right): http://codereview.chromium.org/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h#newcode19 chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h:19: #include "chromeos/dbus/bluetooth_out_of_band_client.h" as commented in previous patch set, with ...
8 years, 3 months ago (2012-09-18 18:53:44 UTC) #18
bryeung
looking nearly there https://chromiumcodereview.appspot.com/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): https://chromiumcodereview.appspot.com/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode28 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:28: // generic "default adapter" which may ...
8 years, 3 months ago (2012-09-18 19:18:39 UTC) #19
keybuk1
https://chromiumcodereview.appspot.com/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_device_chromeos.h File chrome/browser/chromeos/bluetooth/bluetooth_device_chromeos.h (right): https://chromiumcodereview.appspot.com/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_device_chromeos.h#newcode40 chrome/browser/chromeos/bluetooth/bluetooth_device_chromeos.h:40: // BluetoothDevice override I agree
8 years, 3 months ago (2012-09-18 19:32:24 UTC) #20
youngki
https://chromiumcodereview.appspot.com/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h (right): https://chromiumcodereview.appspot.com/10899037/diff/23051/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h#newcode26 chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h:26: struct BluetoothOutOfBandPairingData; On 2012/09/18 18:42:30, keybuk1 wrote: > On ...
8 years, 3 months ago (2012-09-19 01:13:55 UTC) #21
bryeung
Mostly just nits at this point. http://codereview.chromium.org/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h (right): http://codereview.chromium.org/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h#newcode78 chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h:78: private: On 2012/09/19 ...
8 years, 3 months ago (2012-09-19 13:27:16 UTC) #22
youngki
https://chromiumcodereview.appspot.com/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_factory.cc File chrome/browser/chromeos/bluetooth/bluetooth_adapter_factory.cc (right): https://chromiumcodereview.appspot.com/10899037/diff/28001/chrome/browser/chromeos/bluetooth/bluetooth_adapter_factory.cc#newcode7 chrome/browser/chromeos/bluetooth/bluetooth_adapter_factory.cc:7: #include "chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos.h" On 2012/09/19 13:27:16, bryeung wrote: > On ...
8 years, 3 months ago (2012-09-19 19:35:23 UTC) #23
bryeung
lgtm http://codereview.chromium.org/10899037/diff/33002/chrome/browser/chromeos/bluetooth/bluetooth_device.h File chrome/browser/chromeos/bluetooth/bluetooth_device.h (right): http://codereview.chromium.org/10899037/diff/33002/chrome/browser/chromeos/bluetooth/bluetooth_device.h#newcode154 chrome/browser/chromeos/bluetooth/bluetooth_device.h:154: bool IsVisible() const { return visible_; } On ...
8 years, 3 months ago (2012-09-19 20:13:34 UTC) #24
youngki
Scott, could you take a look? http://codereview.chromium.org/10899037/diff/33002/chrome/browser/chromeos/bluetooth/bluetooth_device.h File chrome/browser/chromeos/bluetooth/bluetooth_device.h (right): http://codereview.chromium.org/10899037/diff/33002/chrome/browser/chromeos/bluetooth/bluetooth_device.h#newcode154 chrome/browser/chromeos/bluetooth/bluetooth_device.h:154: bool IsVisible() const ...
8 years, 3 months ago (2012-09-19 20:22:08 UTC) #25
youngki
Friendly ping. Scott, could you take a look? On 2012/09/19 20:22:08, youngki wrote: > Scott, ...
8 years, 3 months ago (2012-09-21 14:35:41 UTC) #26
keybuk
https://chromiumcodereview.appspot.com/10899037/diff/37005/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc File chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc (right): https://chromiumcodereview.appspot.com/10899037/diff/37005/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc#newcode154 chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc:154: I'm still uneasy about this ... we're betting without ...
8 years, 3 months ago (2012-09-21 19:16:58 UTC) #27
youngki
https://chromiumcodereview.appspot.com/10899037/diff/37005/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc File chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc (right): https://chromiumcodereview.appspot.com/10899037/diff/37005/chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc#newcode154 chrome/browser/chromeos/bluetooth/bluetooth_adapter_chromeos_unittest.cc:154: On 2012/09/21 19:16:59, keybuk wrote: > I'm still uneasy ...
8 years, 3 months ago (2012-09-22 02:03:29 UTC) #28
keybuk
lgtm
8 years, 3 months ago (2012-09-22 02:13:26 UTC) #29
youngki
Bryan, Could you suggest who else I should get approvals from?
8 years, 2 months ago (2012-09-25 12:35:37 UTC) #30
youngki
I took suggestion from the presubmit message and added @zelidrag and @sky as reviewers. Zelidrag ...
8 years, 2 months ago (2012-09-25 15:39:38 UTC) #31
sky
I'm not familiar with this code at all. Are you sure you want me to ...
8 years, 2 months ago (2012-09-25 16:16:56 UTC) #32
youngki
Scott, I saw that you are listed chrome/OWNERS. So could you review the following files ...
8 years, 2 months ago (2012-09-25 17:15:05 UTC) #33
youngki
Adding more reviewers @miket and @nkostylev to get all the approvals needed.. Mike, could you ...
8 years, 2 months ago (2012-09-25 17:20:36 UTC) #34
youngki
Removing Zel from reviewer and adding @satorux to the reviewer list per Bryan's suggestion. Satoru, ...
8 years, 2 months ago (2012-09-25 17:34:52 UTC) #35
miket_OOO
Reviewed only these: chrome/browser/chromeos/extensions/bluetooth_event_router.cc chrome/browser/extensions/api/bluetooth/bluetooth_api.cc chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc LGTM
8 years, 2 months ago (2012-09-25 17:59:53 UTC) #36
sky
https://chromiumcodereview.appspot.com/10899037/diff/53001/chrome/chrome_browser_chromeos.gypi File chrome/chrome_browser_chromeos.gypi (right): https://chromiumcodereview.appspot.com/10899037/diff/53001/chrome/chrome_browser_chromeos.gypi#newcode130 chrome/chrome_browser_chromeos.gypi:130: 'browser/chromeos/bluetooth/bluetooth_adapter_chromeos.cc', Why do any of these files need chromeos ...
8 years, 2 months ago (2012-09-25 18:28:27 UTC) #37
youngki
https://chromiumcodereview.appspot.com/10899037/diff/53001/chrome/chrome_browser_chromeos.gypi File chrome/chrome_browser_chromeos.gypi (right): https://chromiumcodereview.appspot.com/10899037/diff/53001/chrome/chrome_browser_chromeos.gypi#newcode130 chrome/chrome_browser_chromeos.gypi:130: 'browser/chromeos/bluetooth/bluetooth_adapter_chromeos.cc', On 2012/09/25 18:28:27, sky wrote: > Why do ...
8 years, 2 months ago (2012-09-25 18:45:03 UTC) #38
sky
LGTM
8 years, 2 months ago (2012-09-25 22:26:41 UTC) #39
youngki
Thanks Mike and Scott for reviewing the CL. Satoru/ could you review the CL for ...
8 years, 2 months ago (2012-09-26 16:19:54 UTC) #40
Nikita (slow)
lgtm
8 years, 2 months ago (2012-09-26 16:23:49 UTC) #41
DaveMoore
lgtm
8 years, 2 months ago (2012-09-26 17:40:57 UTC) #42
youngki
Thanks Dave for reviewing for chromeos ownership. I think I've got all the necessary approvals. ...
8 years, 2 months ago (2012-09-26 18:14:41 UTC) #43
youngki
There were try bot testing failures related to bluetooth_apitest_chromeos.cc and the reason was that I ...
8 years, 2 months ago (2012-09-27 18:38:01 UTC) #44
keybuk
WAIT! This is a massive change to this CL! Please don't submit again without a ...
8 years, 2 months ago (2012-09-27 18:41:12 UTC) #45
youngki
On 2012/09/27 18:41:12, keybuk wrote: > WAIT! > > This is a massive change to ...
8 years, 2 months ago (2012-09-27 18:41:55 UTC) #46
youngki
Ping. Bryan and Scott, could you give LGTM if everything looks okay?
8 years, 2 months ago (2012-10-01 16:19:23 UTC) #47
sky
chrome/*.gyp LGTM
8 years, 2 months ago (2012-10-01 17:09:38 UTC) #48
bryeung
Did you get a looks good from keybuk? He was the one who objected originally.
8 years, 2 months ago (2012-10-01 17:13:31 UTC) #49
youngki
Scott, I am thinking if submitting this CL today; could you take a look and ...
8 years, 2 months ago (2012-10-01 17:43:28 UTC) #50
keybuk
https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode90 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:90: virtual const std::string& address() const; Since this is a ...
8 years, 2 months ago (2012-10-01 18:22:43 UTC) #51
kevers
On 2012/10/01 18:22:43, keybuk wrote: > https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h > File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): > > https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode90 > ...
8 years, 2 months ago (2012-10-01 18:47:41 UTC) #52
youngki
https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode90 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:90: virtual const std::string& address() const; On 2012/10/01 18:22:44, keybuk ...
8 years, 2 months ago (2012-10-01 18:51:40 UTC) #53
youngki
I actually took Kevin's suggestion and reverted the recent patch because the style guide does ...
8 years, 2 months ago (2012-10-01 19:08:37 UTC) #54
keybuk
https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode90 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:90: virtual const std::string& address() const; as kevers replied, since ...
8 years, 2 months ago (2012-10-01 20:34:37 UTC) #55
youngki
https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h File chrome/browser/chromeos/bluetooth/bluetooth_adapter.h (right): https://chromiumcodereview.appspot.com/10899037/diff/55009/chrome/browser/chromeos/bluetooth/bluetooth_adapter.h#newcode90 chrome/browser/chromeos/bluetooth/bluetooth_adapter.h:90: virtual const std::string& address() const; On 2012/10/01 20:34:37, keybuk ...
8 years, 2 months ago (2012-10-01 21:03:27 UTC) #56
keybuk
lgtm
8 years, 2 months ago (2012-10-01 21:11:32 UTC) #57
youngki
Thanks for all the reviews..! I will run try-bots one more time and submit the ...
8 years, 2 months ago (2012-10-01 21:20:05 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/youngki@chromium.org/10899037/72011
8 years, 2 months ago (2012-10-01 23:27:42 UTC) #59
commit-bot: I haz the power
8 years, 2 months ago (2012-10-02 01:56:47 UTC) #60
Change committed as 159615

Powered by Google App Engine
This is Rietveld 408576698