cc: Make picture pile base thread safe.
[chromium-blink-merge.git] / content / browser / frame_host / navigation_request.cc
blob8b87b7ecae21e3f00fe93fd05add3bce8975a9e2
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.
5 #include "content/browser/frame_host/navigation_request.h"
7 #include "content/browser/frame_host/navigation_request_info.h"
8 #include "content/common/resource_request_body.h"
10 namespace content {
12 NavigationRequest::NavigationRequest(
13 FrameTreeNode* frame_tree_node,
14 const CommonNavigationParams& common_params,
15 const CommitNavigationParams& commit_params)
16 : frame_tree_node_(frame_tree_node),
17 common_params_(common_params),
18 commit_params_(commit_params) {
21 NavigationRequest::~NavigationRequest() {
24 void NavigationRequest::BeginNavigation(
25 scoped_ptr<NavigationRequestInfo> info,
26 scoped_refptr<ResourceRequestBody> request_body) {
27 info_ = info.Pass();
28 NOTIMPLEMENTED();
31 } // namespace content