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

Side by Side Diff: content/test/test_render_frame_host.cc

Issue 806703004: [ServiceWorker] Use WebPageVisibilityState in ClientInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/renderer/service_worker/service_worker_script_context.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/test/test_render_frame_host.h" 5 #include "content/test/test_render_frame_host.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "content/browser/frame_host/frame_tree.h" 8 #include "content/browser/frame_host/frame_tree.h"
9 #include "content/browser/frame_host/navigation_request.h" 9 #include "content/browser/frame_host/navigation_request.h"
10 #include "content/browser/frame_host/navigator.h" 10 #include "content/browser/frame_host/navigator.h"
11 #include "content/browser/frame_host/navigator_impl.h" 11 #include "content/browser/frame_host/navigator_impl.h"
12 #include "content/browser/frame_host/render_frame_host_delegate.h" 12 #include "content/browser/frame_host/render_frame_host_delegate.h"
13 #include "content/public/browser/stream_handle.h" 13 #include "content/public/browser/stream_handle.h"
14 #include "content/public/common/content_switches.h" 14 #include "content/public/common/content_switches.h"
15 #include "content/test/browser_side_navigation_test_utils.h" 15 #include "content/test/browser_side_navigation_test_utils.h"
16 #include "content/test/test_navigation_url_loader.h" 16 #include "content/test/test_navigation_url_loader.h"
17 #include "content/test/test_render_view_host.h" 17 #include "content/test/test_render_view_host.h"
18 #include "net/base/load_flags.h" 18 #include "net/base/load_flags.h"
19 #include "third_party/WebKit/public/web/WebPageVisibilityState.h" 19 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h"
20 #include "ui/base/page_transition_types.h" 20 #include "ui/base/page_transition_types.h"
21 21
22 namespace content { 22 namespace content {
23 23
24 TestRenderFrameHostCreationObserver::TestRenderFrameHostCreationObserver( 24 TestRenderFrameHostCreationObserver::TestRenderFrameHostCreationObserver(
25 WebContents* web_contents) 25 WebContents* web_contents)
26 : WebContentsObserver(web_contents), last_created_frame_(NULL) { 26 : WebContentsObserver(web_contents), last_created_frame_(NULL) {
27 } 27 }
28 28
29 TestRenderFrameHostCreationObserver::~TestRenderFrameHostCreationObserver() { 29 TestRenderFrameHostCreationObserver::~TestRenderFrameHostCreationObserver() {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 230
231 ASSERT_TRUE(request->state() == NavigationRequest::STARTED); 231 ASSERT_TRUE(request->state() == NavigationRequest::STARTED);
232 TestNavigationURLLoader* url_loader = 232 TestNavigationURLLoader* url_loader =
233 static_cast<TestNavigationURLLoader*>(request->loader_for_testing()); 233 static_cast<TestNavigationURLLoader*>(request->loader_for_testing());
234 ASSERT_TRUE(url_loader); 234 ASSERT_TRUE(url_loader);
235 scoped_refptr<ResourceResponse> response(new ResourceResponse); 235 scoped_refptr<ResourceResponse> response(new ResourceResponse);
236 url_loader->CallOnResponseStarted(response, MakeEmptyStream()); 236 url_loader->CallOnResponseStarted(response, MakeEmptyStream());
237 } 237 }
238 238
239 } // namespace content 239 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/service_worker/service_worker_script_context.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698