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

Unified Diff: public/platform/WebGeofencingError.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 | « public/platform/WebCircularGeofencingRegion.h ('k') | public/platform/WebGeofencingProvider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebGeofencingError.h
diff --git a/public/platform/WebPushError.h b/public/platform/WebGeofencingError.h
similarity index 71%
copy from public/platform/WebPushError.h
copy to public/platform/WebGeofencingError.h
index 408254b5cc7e8d252bbd2fee13f6b1476459a881..ccdc743c8d9e46c45f717d8d44b7d50410ff4a87 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"
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
« no previous file with comments | « public/platform/WebCircularGeofencingRegion.h ('k') | public/platform/WebGeofencingProvider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698