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

Side by Side Diff: webkit/tools/test_shell/test_shell_win.cc

Issue 1359001: Allow running tests with enabled but closed Web Inspector (Closed)
Patch Set: Rebase Created 10 years, 9 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
« no previous file with comments | « webkit/tools/test_shell/test_shell.cc ('k') | no next file » | 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "webkit/tools/test_shell/test_shell.h" 5 #include "webkit/tools/test_shell/test_shell.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <commdlg.h> 8 #include <commdlg.h>
9 #include <objbase.h> 9 #include <objbase.h>
10 #include <process.h> 10 #include <process.h>
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 // ResetTestController may have closed the window we were holding on to. 251 // ResetTestController may have closed the window we were holding on to.
252 // Grab the first window again. 252 // Grab the first window again.
253 hwnd = *(TestShell::windowList()->begin()); 253 hwnd = *(TestShell::windowList()->begin());
254 shell = static_cast<TestShell*>(win_util::GetWindowUserData(hwnd)); 254 shell = static_cast<TestShell*>(win_util::GetWindowUserData(hwnd));
255 DCHECK(shell); 255 DCHECK(shell);
256 256
257 if (strstr(params.test_url.c_str(), "/inspector/") || 257 if (strstr(params.test_url.c_str(), "/inspector/") ||
258 strstr(params.test_url.c_str(), "\\inspector\\")) 258 strstr(params.test_url.c_str(), "\\inspector\\"))
259 inspector_test_mode_ = true; 259 inspector_test_mode_ = true;
260 260
261 developer_extras_enabled_ = inspector_test_mode_ ||
262 strstr(params.test_url.c_str(), "/inspector-enabled/") ||
263 strstr(params.test_url.c_str(), "\\inspector-enabled\\");
264
261 // Clean up state between test runs. 265 // Clean up state between test runs.
262 webkit_glue::ResetBeforeTestRun(shell->webView()); 266 webkit_glue::ResetBeforeTestRun(shell->webView());
263 ResetWebPreferences(); 267 ResetWebPreferences();
264 web_prefs_->Apply(shell->webView()); 268 web_prefs_->Apply(shell->webView());
265 269
266 SetWindowPos(shell->m_mainWnd, NULL, 270 SetWindowPos(shell->m_mainWnd, NULL,
267 kTestWindowXLocation, kTestWindowYLocation, 0, 0, 271 kTestWindowXLocation, kTestWindowYLocation, 0, 0,
268 SWP_NOSIZE | SWP_NOZORDER); 272 SWP_NOSIZE | SWP_NOZORDER);
269 shell->ResizeSubViews(); 273 shell->ResizeSubViews();
270 274
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 808
805 bool EnsureFontLoaded(HFONT font) { 809 bool EnsureFontLoaded(HFONT font) {
806 return true; 810 return true;
807 } 811 }
808 812
809 bool DownloadUrl(const std::string& url, HWND caller_window) { 813 bool DownloadUrl(const std::string& url, HWND caller_window) {
810 return false; 814 return false;
811 } 815 }
812 816
813 } // namespace webkit_glue 817 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698