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

Unified Diff: content/browser/accessibility/browser_accessibility_mac_unittest.mm

Issue 63253002: Rename WebKit namespace to blink (part 3) (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
Index: content/browser/accessibility/browser_accessibility_mac_unittest.mm
diff --git a/content/browser/accessibility/browser_accessibility_mac_unittest.mm b/content/browser/accessibility/browser_accessibility_mac_unittest.mm
index 5f5d0f21c6cbeda3b5550cd4fc1bb66daf8e6f28..e1b1a930eaf6078229927d4e297747606974791b 100644
--- a/content/browser/accessibility/browser_accessibility_mac_unittest.mm
+++ b/content/browser/accessibility/browser_accessibility_mac_unittest.mm
@@ -67,7 +67,7 @@ class BrowserAccessibilityTest : public ui::CocoaTest {
root.id = 1000;
root.location.set_width(500);
root.location.set_height(100);
- root.role = WebKit::WebAXRoleRootWebArea;
+ root.role = blink::WebAXRoleRootWebArea;
root.AddStringAttribute(AccessibilityNodeData::ATTR_HELP, "HelpText");
root.child_ids.push_back(1001);
root.child_ids.push_back(1002);
@@ -77,14 +77,14 @@ class BrowserAccessibilityTest : public ui::CocoaTest {
child1.SetName("Child1");
child1.location.set_width(250);
child1.location.set_height(100);
- child1.role = WebKit::WebAXRoleButton;
+ child1.role = blink::WebAXRoleButton;
AccessibilityNodeData child2;
child2.id = 1002;
child2.location.set_x(250);
child2.location.set_width(250);
child2.location.set_height(100);
- child2.role = WebKit::WebAXRoleHeading;
+ child2.role = blink::WebAXRoleHeading;
delegate_.reset([[MockAccessibilityDelegate alloc] init]);
manager_.reset(

Powered by Google App Engine
This is Rietveld 408576698