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

Unified Diff: chrome/browser/policy/policy_browsertest.cc

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/browser/plugins/plugin_observer.cc ('k') | chrome/browser/prerender/prerender_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/policy_browsertest.cc
diff --git a/chrome/browser/policy/policy_browsertest.cc b/chrome/browser/policy/policy_browsertest.cc
index 988aa20d44746d6631e2e49eacbbfb6f18881906..541055095820e7b6eec486f1204a07f7593e4e41 100644
--- a/chrome/browser/policy/policy_browsertest.cc
+++ b/chrome/browser/policy/policy_browsertest.cc
@@ -699,14 +699,14 @@ class PolicyTest : public InProcessBrowserTest {
void PerformClick(int x, int y) {
content::WebContents* contents =
browser()->tab_strip_model()->GetActiveWebContents();
- WebKit::WebMouseEvent click_event;
- click_event.type = WebKit::WebInputEvent::MouseDown;
- click_event.button = WebKit::WebMouseEvent::ButtonLeft;
+ blink::WebMouseEvent click_event;
+ click_event.type = blink::WebInputEvent::MouseDown;
+ click_event.button = blink::WebMouseEvent::ButtonLeft;
click_event.clickCount = 1;
click_event.x = x;
click_event.y = y;
contents->GetRenderViewHost()->ForwardMouseEvent(click_event);
- click_event.type = WebKit::WebInputEvent::MouseUp;
+ click_event.type = blink::WebInputEvent::MouseUp;
contents->GetRenderViewHost()->ForwardMouseEvent(click_event);
}
« no previous file with comments | « chrome/browser/plugins/plugin_observer.cc ('k') | chrome/browser/prerender/prerender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698