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

Side by Side Diff: extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notify_session.cc

Issue 2733283002: Require explicit selection of traits for LazyInstance (Closed)
Patch Set: l10n again Created 3 years, 9 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notif y_session.h" 5 #include "extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notif y_session.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 8
9 namespace extensions { 9 namespace extensions {
10 10
11 static base::LazyInstance<BrowserContextKeyedAPIFactory< 11 static base::LazyInstance<BrowserContextKeyedAPIFactory<
12 ApiResourceManager<BluetoothLowEnergyNotifySession>>> 12 ApiResourceManager<BluetoothLowEnergyNotifySession>>>::DestructorAtExit
13 g_factory = LAZY_INSTANCE_INITIALIZER; 13 g_factory = LAZY_INSTANCE_INITIALIZER;
14 14
15 template <> 15 template <>
16 BrowserContextKeyedAPIFactory< 16 BrowserContextKeyedAPIFactory<
17 ApiResourceManager<BluetoothLowEnergyNotifySession>>* 17 ApiResourceManager<BluetoothLowEnergyNotifySession>>*
18 ApiResourceManager<BluetoothLowEnergyNotifySession>::GetFactoryInstance() { 18 ApiResourceManager<BluetoothLowEnergyNotifySession>::GetFactoryInstance() {
19 return g_factory.Pointer(); 19 return g_factory.Pointer();
20 } 20 }
21 21
22 BluetoothLowEnergyNotifySession::BluetoothLowEnergyNotifySession( 22 BluetoothLowEnergyNotifySession::BluetoothLowEnergyNotifySession(
23 bool persistent, 23 bool persistent,
24 const std::string& owner_extension_id, 24 const std::string& owner_extension_id,
25 std::unique_ptr<device::BluetoothGattNotifySession> session) 25 std::unique_ptr<device::BluetoothGattNotifySession> session)
26 : ApiResource(owner_extension_id), 26 : ApiResource(owner_extension_id),
27 persistent_(persistent), 27 persistent_(persistent),
28 session_(session.release()) {} 28 session_(session.release()) {}
29 29
30 BluetoothLowEnergyNotifySession::~BluetoothLowEnergyNotifySession() {} 30 BluetoothLowEnergyNotifySession::~BluetoothLowEnergyNotifySession() {}
31 31
32 device::BluetoothGattNotifySession* 32 device::BluetoothGattNotifySession*
33 BluetoothLowEnergyNotifySession::GetSession() const { 33 BluetoothLowEnergyNotifySession::GetSession() const {
34 return session_.get(); 34 return session_.get();
35 } 35 }
36 36
37 bool BluetoothLowEnergyNotifySession::IsPersistent() const { 37 bool BluetoothLowEnergyNotifySession::IsPersistent() const {
38 return persistent_; 38 return persistent_;
39 } 39 }
40 40
41 } // namespace extensions 41 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698