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

Unified Diff: device/geolocation/rate_limiting_location_provider_proxy_unittest.cc

Issue 2249283003: Hooks together Geolocation Feature in the Client and Engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lai
Patch Set: Addresses Wez's #14 comments Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698