diff options
author | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-09 01:35:44 +0000 |
---|---|---|
committer | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-09 01:35:44 +0000 |
commit | 190b8c5d848077c5a3402eb04f835e5fb1a44ecc (patch) | |
tree | a5dc598bbaedcb793530ef28f35f35bbea7a9c97 /content/browser/frame_host/navigator.cc | |
parent | 9d64cb3cb87eee2483eab03fe45a01fe04139f38 (diff) | |
download | chromium_src-190b8c5d848077c5a3402eb04f835e5fb1a44ecc.zip chromium_src-190b8c5d848077c5a3402eb04f835e5fb1a44ecc.tar.gz chromium_src-190b8c5d848077c5a3402eb04f835e5fb1a44ecc.tar.bz2 |
Add Navigator and NavigatorDelegate objects.
BUG=304341
Review URL: https://codereview.chromium.org/65363002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/frame_host/navigator.cc')
-rw-r--r-- | content/browser/frame_host/navigator.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/content/browser/frame_host/navigator.cc b/content/browser/frame_host/navigator.cc new file mode 100644 index 0000000..4ca26b6 --- /dev/null +++ b/content/browser/frame_host/navigator.cc @@ -0,0 +1,18 @@ +// Copyright 2013 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "content/browser/frame_host/navigator.h" + +#include "content/browser/frame_host/navigator_delegate.h" + +namespace content { + +Navigator::Navigator( + NavigationControllerImpl* nav_controller, + NavigatorDelegate* delegate) + : controller_(nav_controller), + delegate_(delegate) { +} + +} // namespace content |