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

Unified Diff: Source/modules/geofencing/GeofencingError.h

Issue 464073002: Pass through geofencing API calls to the content layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix test expectations Created 6 years, 3 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
« no previous file with comments | « Source/modules/geofencing/Geofencing.cpp ('k') | Source/modules/geofencing/GeofencingError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geofencing/GeofencingError.h
diff --git a/Source/modules/push_messaging/PushError.h b/Source/modules/geofencing/GeofencingError.h
similarity index 64%
copy from Source/modules/push_messaging/PushError.h
copy to Source/modules/geofencing/GeofencingError.h
index 78aed14cf3dc0c6b5f6f88320b6d6e3bc12efb9d..7368d3e8ce52bbd19f0b2ced7beeafb3ef2de3ec 100644
--- a/Source/modules/push_messaging/PushError.h
+++ b/Source/modules/geofencing/GeofencingError.h
@@ -2,29 +2,29 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PushError_h
-#define PushError_h
+#ifndef GeofencingError_h
+#define GeofencingError_h
#include "core/dom/DOMException.h"
#include "platform/heap/Handle.h"
-#include "public/platform/WebPushError.h"
+#include "public/platform/WebGeofencingError.h"
namespace blink {
class ScriptPromiseResolver;
-class PushError {
- WTF_MAKE_NONCOPYABLE(PushError);
+class GeofencingError {
+ WTF_MAKE_NONCOPYABLE(GeofencingError);
public:
// For CallbackPromiseAdapter.
- typedef WebPushError WebType;
+ typedef blink::WebGeofencingError WebType;
static PassRefPtrWillBeRawPtr<DOMException> take(ScriptPromiseResolver*, WebType* webErrorRaw);
static void dispose(WebType* webErrorRaw);
private:
- PushError() WTF_DELETED_FUNCTION;
+ GeofencingError() WTF_DELETED_FUNCTION;
};
} // namespace blink
-#endif // PushError_h
+#endif // GeofencingError_h
« no previous file with comments | « Source/modules/geofencing/Geofencing.cpp ('k') | Source/modules/geofencing/GeofencingError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698