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

Side by Side Diff: components/test_runner/layout_test_runtime_flags.cc

Issue 2211283004: Drop test-only WebFrameClient params/functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "components/test_runner/layout_test_runtime_flags.h" 5 #include "components/test_runner/layout_test_runtime_flags.h"
6 6
7 namespace test_runner { 7 namespace test_runner {
8 8
9 LayoutTestRuntimeFlags::LayoutTestRuntimeFlags() { 9 LayoutTestRuntimeFlags::LayoutTestRuntimeFlags() {
10 Reset(); 10 Reset();
(...skipping 30 matching lines...) Expand all
41 set_plugins_allowed(true); 41 set_plugins_allowed(true);
42 set_displaying_insecure_content_allowed(false); 42 set_displaying_insecure_content_allowed(false);
43 set_running_insecure_content_allowed(false); 43 set_running_insecure_content_allowed(false);
44 set_autoplay_allowed(true); 44 set_autoplay_allowed(true);
45 45
46 set_dump_editting_callbacks(false); 46 set_dump_editting_callbacks(false);
47 set_dump_frame_load_callbacks(false); 47 set_dump_frame_load_callbacks(false);
48 set_dump_ping_loader_callbacks(false); 48 set_dump_ping_loader_callbacks(false);
49 set_dump_user_gesture_in_frame_load_callbacks(false); 49 set_dump_user_gesture_in_frame_load_callbacks(false);
50 set_dump_resource_load_callbacks(false); 50 set_dump_resource_load_callbacks(false);
51 set_dump_resource_priorities(false);
52 set_dump_resource_response_mime_types(false); 51 set_dump_resource_response_mime_types(false);
53 set_dump_navigation_policy(false); 52 set_dump_navigation_policy(false);
54 53
55 set_dump_title_changes(false); 54 set_dump_title_changes(false);
56 set_dump_icon_changes(false); 55 set_dump_icon_changes(false);
57 set_dump_console_messages(true); 56 set_dump_console_messages(true);
58 57
59 set_stay_on_page_after_handling_before_unload(false); 58 set_stay_on_page_after_handling_before_unload(false);
60 59
61 set_have_top_loading_frame(false); 60 set_have_top_loading_frame(false);
62 61
63 set_can_open_windows(false); 62 set_can_open_windows(false);
64 63
65 set_dump_create_view(false); 64 set_dump_create_view(false);
66 set_dump_window_status_changes(false); 65 set_dump_window_status_changes(false);
67 set_dump_spell_check_callbacks(false); 66 set_dump_spell_check_callbacks(false);
68 67
69 // No need to report the initial state - only the future delta is important. 68 // No need to report the initial state - only the future delta is important.
70 tracked_dictionary().ResetChangeTracking(); 69 tracked_dictionary().ResetChangeTracking();
71 } 70 }
72 71
73 } // namespace test_runner 72 } // namespace test_runner
OLDNEW
« no previous file with comments | « components/test_runner/layout_test_runtime_flags.h ('k') | components/test_runner/test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698