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

Unified Diff: third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h

Issue 1972733002: Delete geofencing implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark histogram suffix as obsolete Created 4 years, 7 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: third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
diff --git a/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h b/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
deleted file mode 100644
index e9222037eaddd5a5012ee6ce022355b1f5f0a033..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef GeofencingEvent_h
-#define GeofencingEvent_h
-
-#include "modules/EventModules.h"
-#include "modules/ModulesExport.h"
-#include "modules/geofencing/GeofencingRegion.h"
-#include "platform/heap/Handle.h"
-#include "wtf/text/AtomicString.h"
-#include "wtf/text/WTFString.h"
-
-namespace blink {
-
-class GeofencingRegion;
-
-// FIXME: This should derive from ExtendableEvent.
-class MODULES_EXPORT GeofencingEvent final : public Event {
- DEFINE_WRAPPERTYPEINFO();
-public:
- static GeofencingEvent* create()
- {
- return new GeofencingEvent;
- }
-
- static GeofencingEvent* create(const AtomicString& type, const String& id, GeofencingRegion* region)
- {
- return new GeofencingEvent(type, id, region);
- }
-
- ~GeofencingEvent() override;
- DECLARE_VIRTUAL_TRACE();
-
- const AtomicString& interfaceName() const override;
-
- String id() const { return m_id; }
-
- GeofencingRegion* region() const { return m_region; }
-
-private:
- GeofencingEvent();
- GeofencingEvent(const AtomicString& type, const String& id, GeofencingRegion*);
- String m_id;
- Member<GeofencingRegion> m_region;
-};
-
-} // namespace blink
-
-#endif // GeofencingEvent_h

Powered by Google App Engine
This is Rietveld 408576698