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

Unified Diff: content/public/browser/navigation_details.cc

Issue 2225343002: Navigation: move RestoreType and ReloadType into a separate file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase+ Created 4 years, 4 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/public/browser/navigation_details.cc
diff --git a/content/public/browser/navigation_details.cc b/content/public/browser/navigation_details.cc
index 88f247f392594252e763a2b4746427815c9a9878..8d400f2369321e7fd57a5eb7642f2266563aebd4 100644
--- a/content/public/browser/navigation_details.cc
+++ b/content/public/browser/navigation_details.cc
@@ -8,13 +8,12 @@ namespace content {
LoadCommittedDetails::LoadCommittedDetails()
: entry(nullptr),
- type(content::NAVIGATION_TYPE_UNKNOWN),
+ type(content::NavigationType::UNKNOWN),
previous_entry_index(-1),
did_replace_entry(false),
is_in_page(false),
is_main_frame(true),
- http_status_code(0) {
-}
+ http_status_code(0) {}
LoadCommittedDetails::LoadCommittedDetails(const LoadCommittedDetails& other) =
default;

Powered by Google App Engine
This is Rietveld 408576698