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

Unified Diff: public/platform/WebGeofencingError.h

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: public/platform/WebGeofencingError.h
diff --git a/public/platform/WebPushError.h b/public/platform/WebGeofencingError.h
similarity index 66%
copy from public/platform/WebPushError.h
copy to public/platform/WebGeofencingError.h
index 408254b5cc7e8d252bbd2fee13f6b1476459a881..f7d3be59a5155f4984eaa57f93290d5d1fb9b281 100644
--- a/public/platform/WebPushError.h
+++ b/public/platform/WebGeofencingError.h
@@ -2,21 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WebPushError_h
-#define WebPushError_h
+#ifndef WebGeofencingError_h
+#define WebGeofencingError_h
-#include "WebString.h"
+#include "public/platform/WebString.h"
namespace blink {
-struct WebPushError {
+struct WebGeofencingError {
enum ErrorType {
ErrorTypeAbort = 0,
ErrorTypeUnknown,
ErrorTypeLast = ErrorTypeUnknown
};
- WebPushError(ErrorType errorType, const WebString& message)
+ WebGeofencingError(ErrorType errorType, const WebString& message)
: errorType(errorType)
, message(message)
{
@@ -28,4 +28,4 @@ struct WebPushError {
} // namespace blink
-#endif // WebPushError_h
+#endif // WebGeofencingError_h

Powered by Google App Engine
This is Rietveld 408576698