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

Unified Diff: components/html_viewer/web_notification_manager_impl.h

Issue 1246943002: Remove 'blink::WebSerializedOrigin' (7/7) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ugh
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
« no previous file with comments | « no previous file | components/html_viewer/web_notification_manager_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 15a4756e09af235b45ce95d89799014425122b37..ec7f43799bc318309a7a8e3a1535556b02cd5dde 100644
--- a/components/html_viewer/web_notification_manager_impl.h
+++ b/components/html_viewer/web_notification_manager_impl.h
@@ -9,7 +9,6 @@
namespace blink {
class WebSecurityOrigin;
-class WebSerializedOrigin;
}
namespace html_viewer {
@@ -25,36 +24,22 @@ class WebNotificationManagerImpl : public blink::WebNotificationManager {
virtual void show(const blink::WebSecurityOrigin&,
const blink::WebNotificationData&,
blink::WebNotificationDelegate*);
- virtual void show(const blink::WebSerializedOrigin&,
- const blink::WebNotificationData&,
- blink::WebNotificationDelegate*);
virtual void showPersistent(const blink::WebSecurityOrigin&,
const blink::WebNotificationData&,
blink::WebServiceWorkerRegistration*,
blink::WebNotificationShowCallbacks*);
- virtual void showPersistent(const blink::WebSerializedOrigin&,
- const blink::WebNotificationData&,
- blink::WebServiceWorkerRegistration*,
- blink::WebNotificationShowCallbacks*);
virtual void getNotifications(const blink::WebString& filterTag,
blink::WebServiceWorkerRegistration*,
blink::WebNotificationGetCallbacks*);
virtual void close(blink::WebNotificationDelegate*);
virtual void closePersistent(const blink::WebSecurityOrigin&,
int64_t persistentNotificationId);
- virtual void closePersistent(const blink::WebSerializedOrigin&,
- int64_t persistentNotificationId);
virtual void closePersistent(
const blink::WebSecurityOrigin&,
const blink::WebString& persistentNotificationId);
- virtual void closePersistent(
- const blink::WebSerializedOrigin&,
- const blink::WebString& persistentNotificationId);
virtual void notifyDelegateDestroyed(blink::WebNotificationDelegate*);
virtual blink::WebNotificationPermission checkPermission(
const blink::WebSecurityOrigin&);
- virtual blink::WebNotificationPermission checkPermission(
- const blink::WebSerializedOrigin&);
private:
DISALLOW_COPY_AND_ASSIGN(WebNotificationManagerImpl);
« no previous file with comments | « no previous file | components/html_viewer/web_notification_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698