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

Unified Diff: public/web/WebDatabase.h

Issue 455883003: Cleanup namespace usage in public/web/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 | « public/web/WebDOMMouseEvent.h ('k') | public/web/WebDateTimeSuggestion.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebDatabase.h
diff --git a/public/web/WebDatabase.h b/public/web/WebDatabase.h
index 3d1f894ba58d9946ca6de7e7f042daba47b7cc67..14741a701e58cf77c0470d0cf36eb31a43441427 100644
--- a/public/web/WebDatabase.h
+++ b/public/web/WebDatabase.h
@@ -34,10 +34,9 @@
#include "../platform/WebCommon.h"
#include "WebSecurityOrigin.h"
-namespace blink { class DatabaseBackendBase; }
-
namespace blink {
+class DatabaseBackendBase;
class WebString;
class WebDatabase {
@@ -59,12 +58,12 @@ public:
const WebString& originIdentifier, const WebString& databaseName);
#if BLINK_IMPLEMENTATION
- WebDatabase(const blink::DatabaseBackendBase*);
+ WebDatabase(const DatabaseBackendBase*);
#endif
private:
WebDatabase() { }
- const blink::DatabaseBackendBase* m_database;
+ const DatabaseBackendBase* m_database;
};
} // namespace blink
« no previous file with comments | « public/web/WebDOMMouseEvent.h ('k') | public/web/WebDateTimeSuggestion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698