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

Unified Diff: components/web_view/navigation_entry.h

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 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
« no previous file with comments | « components/web_view/navigation_controller_delegate.h ('k') | components/web_view/navigation_entry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_view/navigation_entry.h
diff --git a/components/web_view/navigation_entry.h b/components/web_view/navigation_entry.h
deleted file mode 100644
index fbb24ab1c10a8495341f89ca7101895480b82d6a..0000000000000000000000000000000000000000
--- a/components/web_view/navigation_entry.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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.
-
-#ifndef COMPONENTS_WEB_VIEW_NAVIGATION_ENTRY_H_
-#define COMPONENTS_WEB_VIEW_NAVIGATION_ENTRY_H_
-
-#include "components/web_view/url_request_cloneable.h"
-
-#include "base/macros.h"
-#include "url/gurl.h"
-
-namespace web_view {
-
-// Contains all information needed about an individual navigation in the
-// navigation stack.
-class NavigationEntry {
- public:
- explicit NavigationEntry(mojo::URLRequestPtr original_request);
- explicit NavigationEntry(const GURL& raw_url);
- ~NavigationEntry();
-
- // Builds a copy of the URLRequest that generated this navigation. This
- // method is heavyweight as it clones a few mojo pipes.
- mojo::URLRequestPtr BuildURLRequest(bool update_originating_time);
-
- private:
- // TODO(erg): This is not enough information to regenerate the state of the
- // world. This is only enough information to regenerate some top level frame
- // navigations. A full implementation would require individual
- // FrameNavigationEntry objects like in content::NavigationEntryImpl.
- URLRequestCloneable url_request_;
-
- DISALLOW_COPY_AND_ASSIGN(NavigationEntry);
-};
-
-} // namespace web_view
-
-#endif // COMPONENTS_WEB_VIEW_NAVIGATION_ENTRY_H_
« no previous file with comments | « components/web_view/navigation_controller_delegate.h ('k') | components/web_view/navigation_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698