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

Unified Diff: public/platform/Platform.h

Issue 457353002: Cleanup namespace usage in public/platform/Web[A-M]*.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | public/platform/WebAudioBus.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/Platform.h
diff --git a/public/platform/Platform.h b/public/platform/Platform.h
index 4d134682a7b54a4d73459985428b32b6cb390f3c..58c2357ceede1aaf2b0f9c293709bdd6501144e7 100644
--- a/public/platform/Platform.h
+++ b/public/platform/Platform.h
@@ -187,7 +187,7 @@ public:
virtual long long databaseGetFileSize(const WebString& vfsFileName) { return 0; }
// Returns the space available for the given origin
- virtual long long databaseGetSpaceAvailableForOrigin(const blink::WebString& originIdentifier) { return 0; }
+ virtual long long databaseGetSpaceAvailableForOrigin(const WebString& originIdentifier) { return 0; }
// DOM Storage --------------------------------------------------
@@ -603,11 +603,11 @@ public:
// Request the platform to start listening to the events of the specified
// type and notify the given listener (if not null) when there is an update.
- virtual void startListening(blink::WebPlatformEventType type, blink::WebPlatformEventListener* listener) { }
+ virtual void startListening(WebPlatformEventType type, WebPlatformEventListener* listener) { }
// Request the platform to stop listening to the specified event and no
// longer notify the listener, if any.
- virtual void stopListening(blink::WebPlatformEventType type) { }
+ virtual void stopListening(WebPlatformEventType type) { }
// Quota -----------------------------------------------------------
« no previous file with comments | « no previous file | public/platform/WebAudioBus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698