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

Unified Diff: components/html_viewer/web_notification_manager_impl.h

Issue 1229783005: Remove 'blink::WebSerializedOrigin' (4/5) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: components/html_viewer/web_notification_manager_impl.h
diff --git a/components/html_viewer/web_notification_manager_impl.h b/components/html_viewer/web_notification_manager_impl.h
index 1110acabc4ba6197c7bb1aafaecac6181cceec0f..a696f6f61ae5260fa76c1e452727b2f8abeaf002 100644
--- a/components/html_viewer/web_notification_manager_impl.h
+++ b/components/html_viewer/web_notification_manager_impl.h
@@ -17,10 +17,10 @@ class WebNotificationManagerImpl : public blink::WebNotificationManager {
virtual ~WebNotificationManagerImpl();
// blink::WebNotificationManager methods:
- virtual void show(const blink::WebSerializedOrigin&,
+ virtual void show(const blink::WebSecurityOrigin&,
const blink::WebNotificationData&,
blink::WebNotificationDelegate*);
- virtual void showPersistent(const blink::WebSerializedOrigin&,
+ virtual void showPersistent(const blink::WebSecurityOrigin&,
const blink::WebNotificationData&,
blink::WebServiceWorkerRegistration*,
blink::WebNotificationShowCallbacks*);
@@ -28,14 +28,14 @@ class WebNotificationManagerImpl : public blink::WebNotificationManager {
blink::WebServiceWorkerRegistration*,
blink::WebNotificationGetCallbacks*);
virtual void close(blink::WebNotificationDelegate*);
- virtual void closePersistent(const blink::WebSerializedOrigin&,
+ virtual void closePersistent(const blink::WebSecurityOrigin&,
int64_t persistentNotificationId);
virtual void closePersistent(
- const blink::WebSerializedOrigin&,
+ const blink::WebSecurityOrigin&,
const blink::WebString& persistentNotificationId);
virtual void notifyDelegateDestroyed(blink::WebNotificationDelegate*);
virtual blink::WebNotificationPermission checkPermission(
- const blink::WebSerializedOrigin&);
+ const blink::WebSecurityOrigin&);
private:
DISALLOW_COPY_AND_ASSIGN(WebNotificationManagerImpl);

Powered by Google App Engine
This is Rietveld 408576698