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

Side by Side Diff: content/browser/frame_host/navigation_request.h

Issue 367653002: Add a FrameHostMsg_BeginNavigation IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implemented the IPC handler Created 6 years, 5 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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_REQUEST_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_REQUEST_H_
7
8 #include "base/basictypes.h"
9
10 #include "base/memory/ref_counted.h"
11
12 namespace content {
13 struct NavigationRequestInfo;
14 class ResourceRequestBody;
15
16 // A UI thread object that owns a navigation request until it commits. It
17 // ensures the UI thread can start a navigation request in the
18 // ResourceDispatcherHost (that lives on the IO thread). For a more precise
19 // description of the intended interactions between UI and IO thread during
20 // navigation, please see the PlzNavigate design doc.
21 class NavigationRequest {
22 public:
23 explicit NavigationRequest();
24 ~NavigationRequest();
25
26 // Called on the UI thread by the RenderFrameHostManager that owns the
27 // NavigationRequest.
28 void BeginNavigation(const NavigationRequestInfo& info,
29 scoped_refptr<ResourceRequestBody> body,
30 int64 frame_node_id);
31
32 DISALLOW_COPY_AND_ASSIGN(NavigationRequest);
33 };
34
35 } // namespace content
36
37 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_REQUEST_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/navigation_request.cc » ('j') | content/browser/frame_host/navigation_request.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698