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

Unified Diff: content/browser/frame_host/frame_navigation_entry.cc

Issue 931333004: Add FrameNavigationEntry class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/frame_host/frame_navigation_entry.cc
diff --git a/content/browser/frame_host/frame_navigation_entry.cc b/content/browser/frame_host/frame_navigation_entry.cc
new file mode 100644
index 0000000000000000000000000000000000000000..df1a2f81d399d96e4c05febf2f7f1fad4d1a0440
--- /dev/null
+++ b/content/browser/frame_host/frame_navigation_entry.cc
@@ -0,0 +1,23 @@
+// Copyright 2015 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/frame_navigation_entry.h"
+
+namespace content {
+
+FrameNavigationEntry::FrameNavigationEntry() {
+}
+
+FrameNavigationEntry::FrameNavigationEntry(SiteInstanceImpl* site_instance,
+ const GURL& url,
+ const Referrer& referrer)
+ : site_instance_(site_instance),
+ url_(url),
+ referrer_(referrer) {
+}
+
+FrameNavigationEntry::~FrameNavigationEntry() {
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698