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

Side by Side Diff: content/public/browser/navigation_details.h

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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_
6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_ 6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_
7 7
8 #include <string> 8 #include <string>
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "content/public/browser/navigation_type.h" 10 #include "content/public/browser/navigation_types.h"
11 #include "content/public/common/ssl_status.h" 11 #include "content/public/common/ssl_status.h"
12 #include "url/gurl.h" 12 #include "url/gurl.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class NavigationEntry; 16 class NavigationEntry;
17 17
18 // Provides the details for a NOTIFICATION_NAV_ENTRY_COMMITTED notification. 18 // Provides the details for a NOTIFICATION_NAV_ENTRY_COMMITTED notification.
19 // TODO(brettw) this mostly duplicates ProvisionalLoadDetails, it would be 19 // TODO(brettw) this mostly duplicates ProvisionalLoadDetails, it would be
20 // nice to unify these somehow. 20 // nice to unify these somehow.
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // count items were removed from the back of the list. 85 // count items were removed from the back of the list.
86 bool from_front; 86 bool from_front;
87 87
88 // Number of items removed. 88 // Number of items removed.
89 int count; 89 int count;
90 }; 90 };
91 91
92 } // namespace content 92 } // namespace content
93 93
94 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_ 94 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698