Index: device/geolocation/rate_limiting_location_provider_proxy_unittest.cc |
diff --git a/device/geolocation/rate_limiting_location_provider_proxy_unittest.cc b/device/geolocation/rate_limiting_location_provider_proxy_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1a9fbef835bb06c81b44e9bc25c6e83326232df4 |
--- /dev/null |
+++ b/device/geolocation/rate_limiting_location_provider_proxy_unittest.cc |
@@ -0,0 +1,25 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "device/geolocation/rate_limiting_location_provider_proxy.h" |
Kevin M
2016/08/22 22:09:34
#include <memory>
CJ
2016/08/23 18:07:13
Done.
|
+ |
+#include "base/memory/ptr_util.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+namespace device { |
+ |
+class RateLimitingLocationProviderProxyTest : public testing::Test { |
+ public: |
+ RateLimitingLocationProviderProxyTest() |
+ : provider_proxy_(base::MakeUnique<RateLimitingLocationProviderProxy>()) { |
+ } |
+ |
+ protected: |
+ std::unique_ptr<RateLimitingLocationProviderProxy> provider_proxy_; |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(RateLimitingLocationProviderProxyTest); |
+}; |
+ |
+} // namespace device |