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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/tts_dispatcher.cc ('k') | chrome/renderer/validation_message_agent.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_RENDERER_VALIDATION_MESSAGE_AGENT_H_ 5 #ifndef CHROME_RENDERER_VALIDATION_MESSAGE_AGENT_H_
6 #define CHROME_RENDERER_VALIDATION_MESSAGE_AGENT_H_ 6 #define CHROME_RENDERER_VALIDATION_MESSAGE_AGENT_H_
7 7
8 #include "content/public/renderer/render_view_observer.h" 8 #include "content/public/renderer/render_view_observer.h"
9 #include "third_party/WebKit/public/web/WebValidationMessageClient.h" 9 #include "third_party/WebKit/public/web/WebValidationMessageClient.h"
10 10
11 namespace content { 11 namespace content {
12 class RenderView; 12 class RenderView;
13 } 13 }
14 14
15 // An impelemntation of WebKit::WebValidationMessageClient. This dispatches 15 // An impelemntation of blink::WebValidationMessageClient. This dispatches
16 // messages to the browser processes. 16 // messages to the browser processes.
17 class ValidationMessageAgent : public content::RenderViewObserver, 17 class ValidationMessageAgent : public content::RenderViewObserver,
18 public WebKit::WebValidationMessageClient { 18 public blink::WebValidationMessageClient {
19 public: 19 public:
20 explicit ValidationMessageAgent(content::RenderView* render_view); 20 explicit ValidationMessageAgent(content::RenderView* render_view);
21 virtual ~ValidationMessageAgent(); 21 virtual ~ValidationMessageAgent();
22 22
23 private: 23 private:
24 // WebValidationMessageClient functions: 24 // WebValidationMessageClient functions:
25 virtual void showValidationMessage(const WebKit::WebRect& anchor_in_root_view, 25 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view,
26 const WebKit::WebString& main_text, 26 const blink::WebString& main_text,
27 const WebKit::WebString& sub_text, 27 const blink::WebString& sub_text,
28 WebKit::WebTextDirection hint) OVERRIDE; 28 blink::WebTextDirection hint) OVERRIDE;
29 virtual void hideValidationMessage() OVERRIDE; 29 virtual void hideValidationMessage() OVERRIDE;
30 virtual void moveValidationMessage( 30 virtual void moveValidationMessage(
31 const WebKit::WebRect& anchor_in_root_view); 31 const blink::WebRect& anchor_in_root_view);
32 32
33 DISALLOW_COPY_AND_ASSIGN(ValidationMessageAgent); 33 DISALLOW_COPY_AND_ASSIGN(ValidationMessageAgent);
34 }; 34 };
35 35
36 #endif // CHROME_RENDERER_VALIDATION_MESSAGE_AGENT_H_ 36 #endif // CHROME_RENDERER_VALIDATION_MESSAGE_AGENT_H_
OLDNEW
« 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