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

Side by Side Diff: Source/testing/runner/WebAXObjectProxy.cpp

Issue 67313005: Remove duplicated headers from the testing/ directory (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
« no previous file with comments | « Source/testing/runner/TestRunner.cpp ('k') | Source/testing/runner/WebTestThemeControlWin.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "WebAXObjectProxy.h" 31 #include "WebAXObjectProxy.h"
32 32
33 #include "TestCommon.h" 33 #include "TestCommon.h"
34 #include "public/platform/WebCString.h" 34 #include "public/platform/WebCString.h"
35 #include "public/platform/WebPoint.h" 35 #include "public/platform/WebPoint.h"
36 #include "public/platform/WebRect.h" 36 #include "public/platform/WebRect.h"
37 #include "public/platform/WebString.h" 37 #include "public/platform/WebString.h"
38 #include "public/web/WebAXObject.h"
39 38
40 using namespace blink; 39 using namespace blink;
41 using namespace std; 40 using namespace std;
42 41
43 namespace WebTestRunner { 42 namespace WebTestRunner {
44 43
45 namespace { 44 namespace {
46 45
47 // Map role value to string, matching Safari/Mac platform implementation to 46 // Map role value to string, matching Safari/Mac platform implementation to
48 // avoid rebaselining layout tests. 47 // avoid rebaselining layout tests.
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1179 } 1178 }
1180 1179
1181 WebAXObjectProxy* WebAXObjectProxyList::createRoot(const WebAXObject& object) 1180 WebAXObjectProxy* WebAXObjectProxyList::createRoot(const WebAXObject& object)
1182 { 1181 {
1183 WebAXObjectProxy* element = new RootWebAXObjectProxy(object, this); 1182 WebAXObjectProxy* element = new RootWebAXObjectProxy(object, this);
1184 m_elements.push_back(element); 1183 m_elements.push_back(element);
1185 return element; 1184 return element;
1186 } 1185 }
1187 1186
1188 } 1187 }
OLDNEW
« no previous file with comments | « Source/testing/runner/TestRunner.cpp ('k') | Source/testing/runner/WebTestThemeControlWin.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698