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

Unified Diff: Source/web/WebCircularRegion.cpp

Issue 393533002: Pass through the geofencing API calls to the content layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@geofencing2
Patch Set: Created 6 years, 5 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: Source/web/WebCircularRegion.cpp
diff --git a/Source/web/WebCircularRegion.cpp b/Source/web/WebCircularRegion.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..ce52f18ee885774601e8c53777eaff60958538e2
--- /dev/null
+++ b/Source/web/WebCircularRegion.cpp
@@ -0,0 +1,37 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
Peter Beverloo 2014/07/14 17:23:08 This should be in Source/platform/exported/.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "public/web/WebCircularRegion.h"
+
+#include "modules/geolocation/CircularRegion.h"
+
+using namespace WebCore;
+
+namespace blink {
+
+double WebCircularRegion::latitude() const
+{
+ return static_cast<CircularRegion*>(*this)->latitude();
Peter Beverloo 2014/07/14 17:23:08 |this| is a pointer, the dereference doesn't make
+}
+
+double WebCircularRegion::longitude() const
+{
+ return static_cast<CircularRegion*>(*this)->longitude();
+}
+
+double WebCircularRegion::radius() const
+{
+ return static_cast<CircularRegion*>(*this)->radius();
+}
+
+WebCircularRegion::WebCircularRegion(CircularRegion* region)
+ : WebGeofencingRegion(region) { }
+
+WebCircularRegion::operator CircularRegion*() const
+{
+ return static_cast<CircularRegion*>(static_cast<GeofencingRegion*>(*this));
Peter Beverloo 2014/07/14 17:23:08 I really don't like all these static_casts. We sho
Peter Beverloo 2014/07/14 18:16:12 Note that |toCircularRegion| would be a private BL
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698