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

Unified Diff: chrome/renderer/validation_message_agent.h

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « chrome/renderer/tts_dispatcher.cc ('k') | chrome/renderer/validation_message_agent.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/validation_message_agent.h
diff --git a/chrome/renderer/validation_message_agent.h b/chrome/renderer/validation_message_agent.h
index 91a4886c63c989395557c83769db9948141063ab..8e82eadca4ec743e982e0d1fd277d1456f910d11 100644
--- a/chrome/renderer/validation_message_agent.h
+++ b/chrome/renderer/validation_message_agent.h
@@ -12,23 +12,23 @@ namespace content {
class RenderView;
}
-// An impelemntation of WebKit::WebValidationMessageClient. This dispatches
+// An impelemntation of blink::WebValidationMessageClient. This dispatches
// messages to the browser processes.
class ValidationMessageAgent : public content::RenderViewObserver,
- public WebKit::WebValidationMessageClient {
+ public blink::WebValidationMessageClient {
public:
explicit ValidationMessageAgent(content::RenderView* render_view);
virtual ~ValidationMessageAgent();
private:
// WebValidationMessageClient functions:
- virtual void showValidationMessage(const WebKit::WebRect& anchor_in_root_view,
- const WebKit::WebString& main_text,
- const WebKit::WebString& sub_text,
- WebKit::WebTextDirection hint) OVERRIDE;
+ virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view,
+ const blink::WebString& main_text,
+ const blink::WebString& sub_text,
+ blink::WebTextDirection hint) OVERRIDE;
virtual void hideValidationMessage() OVERRIDE;
virtual void moveValidationMessage(
- const WebKit::WebRect& anchor_in_root_view);
+ const blink::WebRect& anchor_in_root_view);
DISALLOW_COPY_AND_ASSIGN(ValidationMessageAgent);
};
« no previous file with comments | « chrome/renderer/tts_dispatcher.cc ('k') | chrome/renderer/validation_message_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698