OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
11 #include "content/public/browser/navigation_type.h" | 10 #include "content/public/browser/navigation_type.h" |
12 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
13 | 12 |
14 namespace content { | 13 namespace content { |
15 | 14 |
16 class NavigationEntry; | 15 class NavigationEntry; |
17 | 16 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 // count items were removed from the back of the list. | 81 // count items were removed from the back of the list. |
83 bool from_front; | 82 bool from_front; |
84 | 83 |
85 // Number of items removed. | 84 // Number of items removed. |
86 int count; | 85 int count; |
87 }; | 86 }; |
88 | 87 |
89 } // namespace content | 88 } // namespace content |
90 | 89 |
91 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_ | 90 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_DETAILS_H_ |
OLD | NEW |