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

Unified Diff: public/platform/WebIDBKey.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 | « public/platform/WebIDBDatabaseError.h ('k') | public/platform/WebIDBKeyPath.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebIDBKey.h
diff --git a/public/platform/WebIDBKey.h b/public/platform/WebIDBKey.h
index a26c81f2cd9453ad87558ae37f3cd9ff09b3bfed..2aba653a01f30263d7e8a0b76fab0179f75d79e0 100644
--- a/public/platform/WebIDBKey.h
+++ b/public/platform/WebIDBKey.h
@@ -33,10 +33,10 @@
#include "WebString.h"
#include "WebVector.h"
-namespace blink { class IDBKey; }
-
namespace blink {
+class IDBKey;
+
class WebIDBKey {
public:
// Please use one of the factory methods. This is public only to allow WebVector.
@@ -77,13 +77,13 @@ public:
BLINK_EXPORT double number() const; // Only valid for NumberType.
#if BLINK_IMPLEMENTATION
- WebIDBKey(blink::IDBKey*);
- WebIDBKey& operator=(blink::IDBKey*);
- operator blink::IDBKey*() const;
+ WebIDBKey(IDBKey*);
+ WebIDBKey& operator=(IDBKey*);
+ operator IDBKey*() const;
#endif
private:
- WebPrivatePtr<blink::IDBKey> m_private;
+ WebPrivatePtr<IDBKey> m_private;
};
} // namespace blink
« no previous file with comments | « public/platform/WebIDBDatabaseError.h ('k') | public/platform/WebIDBKeyPath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698