Supervised user whitelists: Cleanup
[chromium-blink-merge.git] / content / browser / frame_host / navigator.cc
blob1ca9dfc5e3906eb80f25c39e2559dd170791b183
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/navigator.h"
7 #include "base/time/time.h"
8 #include "content/common/resource_request_body.h"
9 #include "content/public/browser/stream_handle.h"
11 namespace content {
13 NavigatorDelegate* Navigator::GetDelegate() {
14 return nullptr;
17 NavigationController* Navigator::GetController() {
18 return NULL;
21 bool Navigator::NavigateToPendingEntry(
22 FrameTreeNode* frame_tree_node,
23 NavigationController::ReloadType reload_type) {
24 return false;
27 base::TimeTicks Navigator::GetCurrentLoadStart() {
28 return base::TimeTicks::Now();
31 void Navigator::OnBeginNavigation(
32 FrameTreeNode* frame_tree_node,
33 const CommonNavigationParams& common_params,
34 const BeginNavigationParams& begin_params,
35 scoped_refptr<ResourceRequestBody> body) {
38 void Navigator::CommitNavigation(FrameTreeNode* frame_tree_node,
39 ResourceResponse* response,
40 scoped_ptr<StreamHandle> body) {
43 bool Navigator::IsWaitingForBeforeUnloadACK(FrameTreeNode* frame_tree_node) {
44 return false;
47 } // namespace content