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

Unified Diff: Source/modules/indexeddb/IDBAny.h

Issue 466813003: Cleanup namespace usage in Source/core/modules/[battery/* to indexeddb/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 | « Source/modules/gamepad/WebKitGamepadList.h ('k') | Source/modules/indexeddb/IDBCursor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBAny.h
diff --git a/Source/modules/indexeddb/IDBAny.h b/Source/modules/indexeddb/IDBAny.h
index 6c9717e37a456973de8ee02e17b5bfe73ef0b58a..5b24aece025904523a2a9aef188508602d5f0015 100644
--- a/Source/modules/indexeddb/IDBAny.h
+++ b/Source/modules/indexeddb/IDBAny.h
@@ -35,12 +35,6 @@
namespace blink {
-class WebBlobInfo;
-
-}
-
-namespace blink {
-
class DOMStringList;
class IDBCursor;
class IDBCursorWithValue;
@@ -49,6 +43,7 @@ class IDBIndex;
class IDBKeyPath;
class IDBObjectStore;
class IDBTransaction;
+class WebBlobInfo;
class IDBAny : public GarbageCollectedFinalized<IDBAny> {
public:
@@ -65,7 +60,7 @@ public:
{
return new IDBAny(idbObject);
}
- static IDBAny* create(PassRefPtr<SharedBuffer> value, const Vector<blink::WebBlobInfo>* blobInfo)
+ static IDBAny* create(PassRefPtr<SharedBuffer> value, const Vector<WebBlobInfo>* blobInfo)
{
return new IDBAny(value, blobInfo);
}
@@ -78,7 +73,7 @@ public:
{
return new IDBAny(value);
}
- static IDBAny* create(PassRefPtr<SharedBuffer> value, const Vector<blink::WebBlobInfo>* blobInfo, IDBKey* key, const IDBKeyPath& keyPath)
+ static IDBAny* create(PassRefPtr<SharedBuffer> value, const Vector<WebBlobInfo>* blobInfo, IDBKey* key, const IDBKeyPath& keyPath)
{
return new IDBAny(value, blobInfo, key, keyPath);
}
@@ -114,7 +109,7 @@ public:
IDBObjectStore* idbObjectStore() const;
IDBTransaction* idbTransaction() const;
SharedBuffer* buffer() const;
- const Vector<blink::WebBlobInfo>* blobInfo() const;
+ const Vector<WebBlobInfo>* blobInfo() const;
int64_t integer() const;
const String& string() const;
const IDBKey* key() const;
@@ -131,8 +126,8 @@ private:
explicit IDBAny(IDBKey*);
explicit IDBAny(const IDBKeyPath&);
explicit IDBAny(const String&);
- IDBAny(PassRefPtr<SharedBuffer>, const Vector<blink::WebBlobInfo>*);
- IDBAny(PassRefPtr<SharedBuffer>, const Vector<blink::WebBlobInfo>*, IDBKey*, const IDBKeyPath&);
+ IDBAny(PassRefPtr<SharedBuffer>, const Vector<WebBlobInfo>*);
+ IDBAny(PassRefPtr<SharedBuffer>, const Vector<WebBlobInfo>*, IDBKey*, const IDBKeyPath&);
explicit IDBAny(int64_t);
const Type m_type;
@@ -147,7 +142,7 @@ private:
const Member<IDBKey> m_idbKey;
const IDBKeyPath m_idbKeyPath;
const RefPtr<SharedBuffer> m_buffer;
- const Vector<blink::WebBlobInfo>* m_blobInfo;
+ const Vector<WebBlobInfo>* m_blobInfo;
const String m_string;
const int64_t m_integer;
};
« no previous file with comments | « Source/modules/gamepad/WebKitGamepadList.h ('k') | Source/modules/indexeddb/IDBCursor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698