summaryrefslogtreecommitdiffstats
path: root/components/pairing
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-02-20 03:38:45 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-20 11:39:28 +0000
commit2d0f86058fb9951e3671ace32fa0c670eb536020 (patch)
tree1a21fabfd88da2350b4bfccaa7feb802c3ad5c5f /components/pairing
parente83e901c290d599fcbd82da8a436d520aca94879 (diff)
downloadchromium_src-2d0f86058fb9951e3671ace32fa0c670eb536020.zip
chromium_src-2d0f86058fb9951e3671ace32fa0c670eb536020.tar.gz
chromium_src-2d0f86058fb9951e3671ace32fa0c670eb536020.tar.bz2
components: Cleanup - remove unused private fields.
BUG=447445 TEST=cc_unittests R=blundell@chromium.org Review URL: https://codereview.chromium.org/929883004 Cr-Commit-Position: refs/heads/master@{#317296}
Diffstat (limited to 'components/pairing')
-rw-r--r--components/pairing/bluetooth_host_pairing_controller.cc1
-rw-r--r--components/pairing/bluetooth_host_pairing_controller.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/components/pairing/bluetooth_host_pairing_controller.cc b/components/pairing/bluetooth_host_pairing_controller.cc
index 5a8c8aa..5ffd2f5 100644
--- a/components/pairing/bluetooth_host_pairing_controller.cc
+++ b/components/pairing/bluetooth_host_pairing_controller.cc
@@ -59,7 +59,6 @@ BluetoothHostPairingController::BluetoothHostPairingController()
: current_stage_(STAGE_NONE),
update_status_(UPDATE_STATUS_UNKNOWN),
enrollment_status_(ENROLLMENT_STATUS_UNKNOWN),
- device_(NULL),
proto_decoder_(new ProtoDecoder(this)),
ptr_factory_(this) {
}
diff --git a/components/pairing/bluetooth_host_pairing_controller.h b/components/pairing/bluetooth_host_pairing_controller.h
index 9c50f5c..b99af24 100644
--- a/components/pairing/bluetooth_host_pairing_controller.h
+++ b/components/pairing/bluetooth_host_pairing_controller.h
@@ -103,7 +103,6 @@ class BluetoothHostPairingController
EnrollmentStatus enrollment_status_;
scoped_refptr<device::BluetoothAdapter> adapter_;
- device::BluetoothDevice* device_;
scoped_refptr<device::BluetoothSocket> service_socket_;
scoped_refptr<device::BluetoothSocket> controller_socket_;
scoped_ptr<ProtoDecoder> proto_decoder_;