| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |