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

Side by Side Diff: chrome/test/automation/automation_proxy_uitest.cc

Issue 6111011: Move launcher_.reset() from UITestBase constructor to SetUp(). (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Move CreateProxyLauncher to SetUp(). Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/test/automation/proxy_launcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <string> 5 #include <string>
6 6
7 #include "app/app_switches.h" 7 #include "app/app_switches.h"
8 #include "app/message_box_flags.h" 8 #include "app/message_box_flags.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 CreateFunctor(loop, &TimedMessageLoopRunner::QuitAfter, ms)) 880 CreateFunctor(loop, &TimedMessageLoopRunner::QuitAfter, ms))
881 881
882 template <typename T> T** ReceivePointer(scoped_ptr<T>& p) { // NOLINT 882 template <typename T> T** ReceivePointer(scoped_ptr<T>& p) { // NOLINT
883 return reinterpret_cast<T**>(&p); 883 return reinterpret_cast<T**>(&p);
884 } 884 }
885 885
886 template <typename T> T** ReceivePointer(scoped_refptr<T>& p) { // NOLINT 886 template <typename T> T** ReceivePointer(scoped_refptr<T>& p) { // NOLINT
887 return reinterpret_cast<T**>(&p); 887 return reinterpret_cast<T**>(&p);
888 } 888 }
889 889
890 ExternalTabUITest::ExternalTabUITest() : UITest(MessageLoop::TYPE_UI) { 890 ExternalTabUITest::ExternalTabUITest() : UITest(MessageLoop::TYPE_UI) {}
891 launcher_.reset(CreateProxyLauncher());
892 }
893 891
894 // Replace the default automation proxy with our mock client. 892 // Replace the default automation proxy with our mock client.
895 ProxyLauncher* ExternalTabUITest::CreateProxyLauncher() { 893 ProxyLauncher* ExternalTabUITest::CreateProxyLauncher() {
896 return new ExternalTabUITestMockLauncher(&mock_); 894 return new ExternalTabUITestMockLauncher(&mock_);
897 } 895 }
898 896
899 // Create with specifying a url 897 // Create with specifying a url
900 // Flaky, http://crbug.com/32293 898 // Flaky, http://crbug.com/32293
901 TEST_F(ExternalTabUITest, FLAKY_CreateExternalTab1) { 899 TEST_F(ExternalTabUITest, FLAKY_CreateExternalTab1) {
902 scoped_refptr<TabProxy> tab; 900 scoped_refptr<TabProxy> tab;
(...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after
1747 int diff_pixels_count = 0; 1745 int diff_pixels_count = 0;
1748 for (int x = 0; x < img_size.width(); ++x) { 1746 for (int x = 0; x < img_size.width(); ++x) {
1749 for (int y = 0; y < img_size.height(); ++y) { 1747 for (int y = 0; y < img_size.height(); ++y) {
1750 if (*snapshot_bmp.getAddr32(x, y) != *reference_bmp.getAddr32(x, y)) { 1748 if (*snapshot_bmp.getAddr32(x, y) != *reference_bmp.getAddr32(x, y)) {
1751 ++diff_pixels_count; 1749 ++diff_pixels_count;
1752 } 1750 }
1753 } 1751 }
1754 } 1752 }
1755 ASSERT_EQ(diff_pixels_count, 0); 1753 ASSERT_EQ(diff_pixels_count, 0);
1756 } 1754 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/automation/proxy_launcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698