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

Unified Diff: Source/web/ValidationMessageClientImpl.h

Issue 474183002: Cleanup namespace usage in Source/web/*.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 | « Source/web/UserMediaClientImpl.h ('k') | Source/web/WebDevToolsFrontendImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ValidationMessageClientImpl.h
diff --git a/Source/web/ValidationMessageClientImpl.h b/Source/web/ValidationMessageClientImpl.h
index 10c380b4e8ab60dc862fbe9c6e347ec331007a50..b8cf2c0240748fb2a17d6a4e0385233de6efca9d 100644
--- a/Source/web/ValidationMessageClientImpl.h
+++ b/Source/web/ValidationMessageClientImpl.h
@@ -33,39 +33,36 @@
#include "wtf/text/WTFString.h"
namespace blink {
-class FrameView;
-}
-
-namespace blink {
+class FrameView;
class WebViewImpl;
-class ValidationMessageClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ValidationMessageClientImpl>, public blink::ValidationMessageClient {
+class ValidationMessageClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ValidationMessageClientImpl>, public ValidationMessageClient {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ValidationMessageClientImpl);
public:
static PassOwnPtrWillBeRawPtr<ValidationMessageClientImpl> create(WebViewImpl&);
virtual ~ValidationMessageClientImpl();
- virtual void trace(blink::Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) OVERRIDE;
private:
ValidationMessageClientImpl(WebViewImpl&);
- void checkAnchorStatus(blink::Timer<ValidationMessageClientImpl>*);
- blink::FrameView* currentView();
+ void checkAnchorStatus(Timer<ValidationMessageClientImpl>*);
+ FrameView* currentView();
- virtual void showValidationMessage(const blink::Element& anchor, const String& message, TextDirection messageDir, const String& subMessage, TextDirection subMessageDir) OVERRIDE;
- virtual void hideValidationMessage(const blink::Element& anchor) OVERRIDE;
- virtual bool isValidationMessageVisible(const blink::Element& anchor) OVERRIDE;
- virtual void documentDetached(const blink::Document&) OVERRIDE;
+ virtual void showValidationMessage(const Element& anchor, const String& message, TextDirection messageDir, const String& subMessage, TextDirection subMessageDir) OVERRIDE;
+ virtual void hideValidationMessage(const Element& anchor) OVERRIDE;
+ virtual bool isValidationMessageVisible(const Element& anchor) OVERRIDE;
+ virtual void documentDetached(const Document&) OVERRIDE;
virtual void willBeDestroyed() OVERRIDE;
WebViewImpl& m_webView;
- RawPtrWillBeMember<const blink::Element> m_currentAnchor;
+ RawPtrWillBeMember<const Element> m_currentAnchor;
String m_message;
- blink::IntRect m_lastAnchorRectInScreen;
+ IntRect m_lastAnchorRectInScreen;
float m_lastPageScaleFactor;
double m_finishTime;
- blink::Timer<ValidationMessageClientImpl> m_timer;
+ Timer<ValidationMessageClientImpl> m_timer;
};
}
« no previous file with comments | « Source/web/UserMediaClientImpl.h ('k') | Source/web/WebDevToolsFrontendImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698