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

Side by Side Diff: content/shell/renderer/test_runner/web_test_proxy.cc

Issue 436133002: Migrate TestCommon to Chromium c++ style and remove un-used header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated for layout test Created 6 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "content/shell/renderer/test_runner/web_test_proxy.h" 5 #include "content/shell/renderer/test_runner/web_test_proxy.h"
6 6
7 #include <cctype> 7 #include <cctype>
8 8
9 #include "base/callback_helpers.h" 9 #include "base/callback_helpers.h"
10 #include "base/debug/trace_event.h" 10 #include "base/debug/trace_event.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
13 #include "content/shell/renderer/test_runner/TestCommon.h"
14 #include "content/shell/renderer/test_runner/TestInterfaces.h" 13 #include "content/shell/renderer/test_runner/TestInterfaces.h"
15 #include "content/shell/renderer/test_runner/TestPlugin.h" 14 #include "content/shell/renderer/test_runner/TestPlugin.h"
16 #include "content/shell/renderer/test_runner/WebTestDelegate.h" 15 #include "content/shell/renderer/test_runner/WebTestDelegate.h"
17 #include "content/shell/renderer/test_runner/WebTestInterfaces.h" 16 #include "content/shell/renderer/test_runner/WebTestInterfaces.h"
18 #include "content/shell/renderer/test_runner/accessibility_controller.h" 17 #include "content/shell/renderer/test_runner/accessibility_controller.h"
19 #include "content/shell/renderer/test_runner/event_sender.h" 18 #include "content/shell/renderer/test_runner/event_sender.h"
20 #include "content/shell/renderer/test_runner/mock_color_chooser.h" 19 #include "content/shell/renderer/test_runner/mock_color_chooser.h"
21 #include "content/shell/renderer/test_runner/mock_screen_orientation_client.h" 20 #include "content/shell/renderer/test_runner/mock_screen_orientation_client.h"
22 #include "content/shell/renderer/test_runner/mock_web_push_client.h" 21 #include "content/shell/renderer/test_runner/mock_web_push_client.h"
23 #include "content/shell/renderer/test_runner/mock_web_speech_recognizer.h" 22 #include "content/shell/renderer/test_runner/mock_web_speech_recognizer.h"
(...skipping 1228 matching lines...) Expand 10 before | Expand all | Expand 10 after
1252 if (!push_client_.get()) 1251 if (!push_client_.get())
1253 push_client_.reset(new MockWebPushClient); 1252 push_client_.reset(new MockWebPushClient);
1254 return push_client_.get(); 1253 return push_client_.get();
1255 } 1254 }
1256 1255
1257 blink::WebPushClient* WebTestProxyBase::GetWebPushClient() { 1256 blink::WebPushClient* WebTestProxyBase::GetWebPushClient() {
1258 return GetPushClientMock(); 1257 return GetPushClientMock();
1259 } 1258 }
1260 1259
1261 } // namespace content 1260 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/renderer/test_runner/web_permissions.cc ('k') | content/test/layouttest_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698