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

Unified Diff: Source/web/NotificationPresenterImpl.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
« no previous file with comments | « Source/web/NotificationPermissionClientImpl.cpp ('k') | Source/web/NotificationPresenterImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/NotificationPresenterImpl.h
diff --git a/Source/web/NotificationPresenterImpl.h b/Source/web/NotificationPresenterImpl.h
index 65eb260fd2be3b7e9494838d483b5de0bdeca1ff..56dc11ddd71906a0d9f159dd1425b584291efe67 100644
--- a/Source/web/NotificationPresenterImpl.h
+++ b/Source/web/NotificationPresenterImpl.h
@@ -39,19 +39,19 @@ namespace blink {
class WebNotificationPresenter;
-class NotificationPresenterImpl FINAL : public WebCore::NotificationClient {
+class NotificationPresenterImpl FINAL : public blink::NotificationClient {
public:
NotificationPresenterImpl() : m_presenter(0) { }
void initialize(WebNotificationPresenter* presenter);
bool isInitialized();
- // WebCore::NotificationPresenter implementation.
- virtual bool show(WebCore::Notification*) OVERRIDE;
- virtual void close(WebCore::Notification*) OVERRIDE;
- virtual void notificationObjectDestroyed(WebCore::Notification*) OVERRIDE;
- virtual WebCore::NotificationClient::Permission checkPermission(WebCore::ExecutionContext*) OVERRIDE;
- virtual void requestPermission(WebCore::ExecutionContext*, WTF::PassOwnPtr<WebCore::NotificationPermissionCallback>) OVERRIDE;
+ // blink::NotificationPresenter implementation.
+ virtual bool show(blink::Notification*) OVERRIDE;
+ virtual void close(blink::Notification*) OVERRIDE;
+ virtual void notificationObjectDestroyed(blink::Notification*) OVERRIDE;
+ virtual blink::NotificationClient::Permission checkPermission(blink::ExecutionContext*) OVERRIDE;
+ virtual void requestPermission(blink::ExecutionContext*, WTF::PassOwnPtr<blink::NotificationPermissionCallback>) OVERRIDE;
private:
// WebNotificationPresenter that this object delegates to.
« no previous file with comments | « Source/web/NotificationPermissionClientImpl.cpp ('k') | Source/web/NotificationPresenterImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698