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

Side by Side Diff: content/browser/site_per_process_browsertest.cc

Issue 1892123003: Add components/network_session_configurator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on https://crrev.com/1945513002. Created 4 years, 6 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 | « content/browser/DEPS ('k') | content/content_shell.gypi » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/site_per_process_browsertest.h" 5 #include "content/browser/site_per_process_browsertest.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/location.h" 14 #include "base/location.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/single_thread_task_runner.h" 16 #include "base/single_thread_task_runner.h"
17 #include "base/strings/pattern.h" 17 #include "base/strings/pattern.h"
18 #include "base/strings/stringprintf.h" 18 #include "base/strings/stringprintf.h"
19 #include "base/strings/utf_string_conversions.h" 19 #include "base/strings/utf_string_conversions.h"
20 #include "base/test/test_timeouts.h" 20 #include "base/test/test_timeouts.h"
21 #include "base/threading/thread_task_runner_handle.h" 21 #include "base/threading/thread_task_runner_handle.h"
22 #include "build/build_config.h" 22 #include "build/build_config.h"
23 #include "components/network_session_configurator/switches.h"
23 #include "content/browser/frame_host/cross_process_frame_connector.h" 24 #include "content/browser/frame_host/cross_process_frame_connector.h"
24 #include "content/browser/frame_host/frame_tree.h" 25 #include "content/browser/frame_host/frame_tree.h"
25 #include "content/browser/frame_host/interstitial_page_impl.h" 26 #include "content/browser/frame_host/interstitial_page_impl.h"
26 #include "content/browser/frame_host/navigator.h" 27 #include "content/browser/frame_host/navigator.h"
27 #include "content/browser/frame_host/render_frame_proxy_host.h" 28 #include "content/browser/frame_host/render_frame_proxy_host.h"
28 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" 29 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
29 #include "content/browser/gpu/compositor_util.h" 30 #include "content/browser/gpu/compositor_util.h"
30 #include "content/browser/loader/resource_dispatcher_host_impl.h" 31 #include "content/browser/loader/resource_dispatcher_host_impl.h"
31 #include "content/browser/renderer_host/input/synthetic_tap_gesture.h" 32 #include "content/browser/renderer_host/input/synthetic_tap_gesture.h"
32 #include "content/browser/renderer_host/render_view_host_impl.h" 33 #include "content/browser/renderer_host/render_view_host_impl.h"
(...skipping 7079 matching lines...) Expand 10 before | Expand all | Expand 10 after
7112 EXPECT_FALSE( 7113 EXPECT_FALSE(
7113 ContainsKey(web_contents()->pending_widget_views_, 7114 ContainsKey(web_contents()->pending_widget_views_,
7114 std::make_pair(process1->GetID(), filter1->routing_id()))); 7115 std::make_pair(process1->GetID(), filter1->routing_id())));
7115 EXPECT_FALSE( 7116 EXPECT_FALSE(
7116 ContainsKey(web_contents()->pending_widget_views_, 7117 ContainsKey(web_contents()->pending_widget_views_,
7117 std::make_pair(process2->GetID(), filter2->routing_id()))); 7118 std::make_pair(process2->GetID(), filter2->routing_id())));
7118 } 7119 }
7119 #endif 7120 #endif
7120 7121
7121 } // namespace content 7122 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/DEPS ('k') | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698