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

Unified Diff: public/web/WebDOMFileSystem.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/WebDOMEvent.h ('k') | public/web/WebDOMMediaStreamTrack.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebDOMFileSystem.h
diff --git a/public/web/WebDOMFileSystem.h b/public/web/WebDOMFileSystem.h
index e647546b94aee38b130093d9b5a46ebb26e7e62f..34520fd5679aad1725ac8062ed4e5d206cb5b01f 100644
--- a/public/web/WebDOMFileSystem.h
+++ b/public/web/WebDOMFileSystem.h
@@ -48,10 +48,10 @@ class Value;
template <class T> class Handle;
}
-namespace blink { class DOMFileSystem; }
-
namespace blink {
+class DOMFileSystem;
+
class WebDOMFileSystem {
public:
enum SerializableType {
@@ -102,12 +102,12 @@ public:
bool isNull() const { return m_private.isNull(); }
#if BLINK_IMPLEMENTATION
- WebDOMFileSystem(blink::DOMFileSystem*);
- WebDOMFileSystem& operator=(blink::DOMFileSystem*);
+ WebDOMFileSystem(DOMFileSystem*);
+ WebDOMFileSystem& operator=(DOMFileSystem*);
#endif
private:
- WebPrivatePtr<blink::DOMFileSystem> m_private;
+ WebPrivatePtr<DOMFileSystem> m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebDOMEvent.h ('k') | public/web/WebDOMMediaStreamTrack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698