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

Unified Diff: Source/web/WebDevToolsFrontendImpl.h

Issue 467573002: Cleanup namespace usage in Source/web/Web*.h (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/web/WebDevToolsAgentPrivate.h ('k') | Source/web/WebEmbeddedWorkerImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDevToolsFrontendImpl.h
diff --git a/Source/web/WebDevToolsFrontendImpl.h b/Source/web/WebDevToolsFrontendImpl.h
index 55659545fb36102a1a9f6ae76f1a2fd98658c6bd..a68024dd5e94752e75fb92b16f6eeb0b04030a4d 100644
--- a/Source/web/WebDevToolsFrontendImpl.h
+++ b/Source/web/WebDevToolsFrontendImpl.h
@@ -46,12 +46,12 @@ struct WebDevToolsMessageData;
using WTF::String;
-class WebDevToolsFrontendImpl FINAL : public blink::WebDevToolsFrontend {
+class WebDevToolsFrontendImpl FINAL : public WebDevToolsFrontend {
WTF_MAKE_NONCOPYABLE(WebDevToolsFrontendImpl);
public:
WebDevToolsFrontendImpl(
- blink::WebViewImpl* webViewImpl,
- blink::WebDevToolsFrontendClient* client,
+ WebViewImpl*,
+ WebDevToolsFrontendClient*,
const String& applicationLocale);
virtual ~WebDevToolsFrontendImpl();
@@ -61,15 +61,15 @@ public:
private:
class InspectorFrontendResumeObserver;
void resume();
- void maybeDispatch(blink::Timer<WebDevToolsFrontendImpl>*);
+ void maybeDispatch(Timer<WebDevToolsFrontendImpl>*);
void doDispatchOnInspectorFrontend(const WebString& message);
- blink::WebViewImpl* m_webViewImpl;
- blink::WebDevToolsFrontendClient* m_client;
+ WebViewImpl* m_webViewImpl;
+ WebDevToolsFrontendClient* m_client;
String m_applicationLocale;
OwnPtr<InspectorFrontendResumeObserver> m_inspectorFrontendResumeObserver;
Deque<WebString> m_messages;
- blink::Timer<WebDevToolsFrontendImpl> m_inspectorFrontendDispatchTimer;
+ Timer<WebDevToolsFrontendImpl> m_inspectorFrontendDispatchTimer;
};
} // namespace blink
« no previous file with comments | « Source/web/WebDevToolsAgentPrivate.h ('k') | Source/web/WebEmbeddedWorkerImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698