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

Side by Side Diff: chrome/common/extensions/permissions/bluetooth_device_permission.cc

Issue 15836003: Update chrome/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/extensions/permissions/bluetooth_device_permission.h" 5 #include "chrome/common/extensions/permissions/bluetooth_device_permission.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 28 matching lines...) Expand all
39 PermissionMessages result; 39 PermissionMessages result;
40 40
41 scoped_refptr<device::BluetoothAdapter> bluetooth_adapter = 41 scoped_refptr<device::BluetoothAdapter> bluetooth_adapter =
42 device::BluetoothAdapterFactory::MaybeGetAdapter(); 42 device::BluetoothAdapterFactory::MaybeGetAdapter();
43 43
44 for (std::set<BluetoothDevicePermissionData>::const_iterator i = 44 for (std::set<BluetoothDevicePermissionData>::const_iterator i =
45 data_set_.begin(); i != data_set_.end(); ++i) { 45 data_set_.begin(); i != data_set_.end(); ++i) {
46 46
47 const std::string& device_address = i->device_address(); 47 const std::string& device_address = i->device_address();
48 string16 device_identifier; 48 string16 device_identifier;
49 if (bluetooth_adapter) { 49 if (bluetooth_adapter.get()) {
50 device::BluetoothDevice* device = 50 device::BluetoothDevice* device =
51 bluetooth_adapter->GetDevice(device_address); 51 bluetooth_adapter->GetDevice(device_address);
52 if (device) 52 if (device)
53 device_identifier = device->GetName(); 53 device_identifier = device->GetName();
54 } 54 }
55 55
56 if (device_identifier.length() == 0) { 56 if (device_identifier.length() == 0) {
57 UTF8ToUTF16(device_address.c_str(), device_address.length(), 57 UTF8ToUTF16(device_address.c_str(), device_address.length(),
58 &device_identifier); 58 &device_identifier);
59 } 59 }
60 60
61 result.push_back(PermissionMessage( 61 result.push_back(PermissionMessage(
62 PermissionMessage::kBluetoothDevice, 62 PermissionMessage::kBluetoothDevice,
63 l10n_util::GetStringFUTF16( 63 l10n_util::GetStringFUTF16(
64 IDS_EXTENSION_PROMPT_WARNING_BLUETOOTH_DEVICE, 64 IDS_EXTENSION_PROMPT_WARNING_BLUETOOTH_DEVICE,
65 device_identifier))); 65 device_identifier)));
66 } 66 }
67 67
68 return result; 68 return result;
69 } 69 }
70 70
71 } // namespace extensions 71 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698