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

Unified Diff: third_party/WebKit/Source/web/tests/AccessibilityObjectModelTest.cpp

Issue 2907133002: Move WebAXObject.cpp to core/ (WIP) (Closed)
Patch Set: Created 3 years, 7 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 | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/AccessibilityObjectModelTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/AccessibilityObjectModelTest.cpp b/third_party/WebKit/Source/web/tests/AccessibilityObjectModelTest.cpp
index bd07048daa9fb303dad68700266246587cc04eae..8d9aaab4c4ca6a507b5c90dbca7b30d675786170 100644
--- a/third_party/WebKit/Source/web/tests/AccessibilityObjectModelTest.cpp
+++ b/third_party/WebKit/Source/web/tests/AccessibilityObjectModelTest.cpp
@@ -79,7 +79,7 @@ TEST_F(AccessibilityObjectModelTest, AOMDoesNotReflectARIA) {
auto* axTextBox = cache->GetOrCreate(textbox);
EXPECT_EQ(kComboBoxRole, axTextBox->RoleValue());
AXNameFrom name_from;
- AXObjectImpl::AXObjectVector name_objects;
+ AXObjectImpl::AXObjectImplVector name_objects;
EXPECT_EQ("Combo", axTextBox->GetName(name_from, &name_objects));
EXPECT_FALSE(axTextBox->IsEnabled());
@@ -109,7 +109,7 @@ TEST_F(AccessibilityObjectModelTest, AOMPropertiesCanBeCleared) {
auto* axButton = cache->GetOrCreate(button);
EXPECT_EQ(kCheckBoxRole, axButton->RoleValue());
AXNameFrom name_from;
- AXObjectImpl::AXObjectVector name_objects;
+ AXObjectImpl::AXObjectImplVector name_objects;
EXPECT_EQ("Check", axButton->GetName(name_from, &name_objects));
EXPECT_FALSE(axButton->IsEnabled());
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698