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

Unified Diff: public/web/WebUserGestureToken.h

Issue 454103003: Cleanup namespace usage in public/web/Web[N-Z]*.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/WebTextRun.h ('k') | public/web/WebUserMediaRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebUserGestureToken.h
diff --git a/public/web/WebUserGestureToken.h b/public/web/WebUserGestureToken.h
index 909dacebfb1a59e2f540c57ba827a8148e9511a4..1721724be1ee9bce3a3480056da1812666f48939 100644
--- a/public/web/WebUserGestureToken.h
+++ b/public/web/WebUserGestureToken.h
@@ -34,10 +34,8 @@
#include "../platform/WebPrivatePtr.h"
namespace blink {
-class UserGestureToken;
-}
-namespace blink {
+class UserGestureToken;
// A WebUserGestureToken allows for storing the user gesture state of the
// currently active context and reinstantiating it later on to continue
@@ -59,15 +57,15 @@ public:
bool isNull() const { return m_token.isNull(); }
#if BLINK_IMPLEMENTATION
- explicit WebUserGestureToken(PassRefPtr<blink::UserGestureToken>);
- operator PassRefPtr<blink::UserGestureToken>() const;
+ explicit WebUserGestureToken(PassRefPtr<UserGestureToken>);
+ operator PassRefPtr<UserGestureToken>() const;
#endif
private:
BLINK_EXPORT void assign(const WebUserGestureToken&);
BLINK_EXPORT void reset();
- WebPrivatePtr<blink::UserGestureToken> m_token;
+ WebPrivatePtr<UserGestureToken> m_token;
};
} // namespace blink
« no previous file with comments | « public/web/WebTextRun.h ('k') | public/web/WebUserMediaRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698