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

Unified Diff: Source/web/ValidationMessageClientImpl.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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.cpp ('k') | Source/web/ValidationMessageClientImpl.cpp » ('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 83967859d841351c0ea4c9d35dcba47431c23706..bad73ecf011d596689b687904f6e46cb3bb19c72 100644
--- a/Source/web/ValidationMessageClientImpl.h
+++ b/Source/web/ValidationMessageClientImpl.h
@@ -32,7 +32,7 @@
#include "platform/heap/Handle.h"
#include "wtf/text/WTFString.h"
-namespace WebCore {
+namespace blink {
class FrameView;
}
@@ -40,32 +40,32 @@ namespace blink {
class WebViewImpl;
-class ValidationMessageClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ValidationMessageClientImpl>, public WebCore::ValidationMessageClient {
+class ValidationMessageClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ValidationMessageClientImpl>, public blink::ValidationMessageClient {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ValidationMessageClientImpl);
public:
static PassOwnPtrWillBeRawPtr<ValidationMessageClientImpl> create(WebViewImpl&);
virtual ~ValidationMessageClientImpl();
- virtual void trace(WebCore::Visitor*) OVERRIDE;
+ virtual void trace(blink::Visitor*) OVERRIDE;
private:
ValidationMessageClientImpl(WebViewImpl&);
- void checkAnchorStatus(WebCore::Timer<ValidationMessageClientImpl>*);
- WebCore::FrameView* currentView();
+ void checkAnchorStatus(blink::Timer<ValidationMessageClientImpl>*);
+ blink::FrameView* currentView();
- virtual void showValidationMessage(const WebCore::Element& anchor, const String& message) OVERRIDE;
- virtual void hideValidationMessage(const WebCore::Element& anchor) OVERRIDE;
- virtual bool isValidationMessageVisible(const WebCore::Element& anchor) OVERRIDE;
- virtual void documentDetached(const WebCore::Document&) OVERRIDE;
+ virtual void showValidationMessage(const blink::Element& anchor, const String& message) 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 willBeDestroyed() OVERRIDE;
WebViewImpl& m_webView;
- RawPtrWillBeMember<const WebCore::Element> m_currentAnchor;
+ RawPtrWillBeMember<const blink::Element> m_currentAnchor;
String m_message;
- WebCore::IntRect m_lastAnchorRectInScreen;
+ blink::IntRect m_lastAnchorRectInScreen;
float m_lastPageScaleFactor;
double m_finishTime;
- WebCore::Timer<ValidationMessageClientImpl> m_timer;
+ blink::Timer<ValidationMessageClientImpl> m_timer;
};
}
« no previous file with comments | « Source/web/UserMediaClientImpl.cpp ('k') | Source/web/ValidationMessageClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698