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

Side by Side Diff: webkit/tools/test_shell/test_shell.h

Issue 204008: Fix tests involving multiple windows that log frame load events.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | webkit/tools/test_shell/test_shell.cc » ('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) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 scoped_ptr<TextInputController> text_input_controller_; 328 scoped_ptr<TextInputController> text_input_controller_;
329 329
330 scoped_ptr<TestNavigationController> navigation_controller_; 330 scoped_ptr<TestNavigationController> navigation_controller_;
331 331
332 scoped_ptr<TestWebViewDelegate> delegate_; 332 scoped_ptr<TestWebViewDelegate> delegate_;
333 scoped_ptr<TestWebViewDelegate> popup_delegate_; 333 scoped_ptr<TestWebViewDelegate> popup_delegate_;
334 334
335 const TestParams* test_params_; 335 const TestParams* test_params_;
336 336
337 // True while a test is preparing to run 337 // True while a test is preparing to run
338 bool test_is_preparing_; 338 static bool test_is_preparing_;
339 339
340 // True while a test is running 340 // True while a test is running
341 bool test_is_pending_; 341 static bool test_is_pending_;
342 342
343 // True if driven from a nested message loop. 343 // True if driven from a nested message loop.
344 bool is_modal_; 344 bool is_modal_;
345 345
346 // The preferences for the test shell. 346 // The preferences for the test shell.
347 static WebPreferences* web_prefs_; 347 static WebPreferences* web_prefs_;
348 348
349 #if defined(OS_WIN) 349 #if defined(OS_WIN)
350 // Used by the watchdog to know when it's finished. 350 // Used by the watchdog to know when it's finished.
351 HANDLE finished_event_; 351 HANDLE finished_event_;
352 #endif 352 #endif
353 353
354 // Dump the stats table counters on exit. 354 // Dump the stats table counters on exit.
355 bool dump_stats_table_on_exit_; 355 bool dump_stats_table_on_exit_;
356 }; 356 };
357 357
358 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ 358 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/tools/test_shell/test_shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698