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

Side by Side Diff: chromeos/components/tether/mock_local_device_data_provider.h

Issue 2801353002: [CrOS Tether] Fill out the Initializer class. Tether will now initialize fully once the flag is ena… (Closed)
Patch Set: Added missing dep. Created 3 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef CHROMEOS_COMPONENTS_TETHER_MOCK_LOCAL_DEVICE_DATA_PROVIDER_H 5 #ifndef CHROMEOS_COMPONENTS_TETHER_MOCK_LOCAL_DEVICE_DATA_PROVIDER_H_
6 #define CHROMEOS_COMPONENTS_TETHER_MOCK_LOCAL_DEVICE_DATA_PROVIDER_H 6 #define CHROMEOS_COMPONENTS_TETHER_MOCK_LOCAL_DEVICE_DATA_PROVIDER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/ptr_util.h" 13 #include "base/memory/ptr_util.h"
14 #include "chromeos/components/tether/local_device_data_provider.h" 14 #include "chromeos/components/tether/local_device_data_provider.h"
15 15
16 namespace cryptauth { 16 namespace cryptauth {
(...skipping 23 matching lines...) Expand all
40 std::unique_ptr<std::string> public_key_; 40 std::unique_ptr<std::string> public_key_;
41 std::unique_ptr<std::vector<cryptauth::BeaconSeed>> beacon_seeds_; 41 std::unique_ptr<std::vector<cryptauth::BeaconSeed>> beacon_seeds_;
42 42
43 DISALLOW_COPY_AND_ASSIGN(MockLocalDeviceDataProvider); 43 DISALLOW_COPY_AND_ASSIGN(MockLocalDeviceDataProvider);
44 }; 44 };
45 45
46 } // namespace tether 46 } // namespace tether
47 47
48 } // namespace chromeos 48 } // namespace chromeos
49 49
50 #endif // CHROMEOS_COMPONENTS_TETHER_MOCK_LOCAL_DEVICE_DATA_PROVIDER_H 50 #endif // CHROMEOS_COMPONENTS_TETHER_MOCK_LOCAL_DEVICE_DATA_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698