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

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

Issue 1908233002: One and only one top-loading-frame across all renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split-setTopLoadingFrame-into-set-and-clear
Patch Set: Rebasing... Created 4 years, 8 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 set_dump_resource_priorities(false); 51 set_dump_resource_priorities(false);
52 set_dump_resource_response_mime_types(false); 52 set_dump_resource_response_mime_types(false);
53 set_dump_navigation_policy(false); 53 set_dump_navigation_policy(false);
54 set_intercept_post_message(false); 54 set_intercept_post_message(false);
55 55
56 set_dump_title_changes(false); 56 set_dump_title_changes(false);
57 set_dump_icon_changes(false); 57 set_dump_icon_changes(false);
58 58
59 set_stay_on_page_after_handling_before_unload(false); 59 set_stay_on_page_after_handling_before_unload(false);
60 60
61 set_have_top_loading_frame(false);
62
61 // No need to report the initial state - only the future delta is important. 63 // No need to report the initial state - only the future delta is important.
62 tracked_dictionary().ResetChangeTracking(); 64 tracked_dictionary().ResetChangeTracking();
63 } 65 }
64 66
65 } // namespace test_runner 67 } // namespace test_runner
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698