Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BROWSER_FRAME_HOST_FRAME_NAVIGATION_ENTRY_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_FRAME_NAVIGATION_ENTRY_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_NAVIGATION_ENTRY_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_NAVIGATION_ENTRY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "content/browser/site_instance_impl.h" | 12 #include "content/browser/site_instance_impl.h" |
| 13 #include "content/public/common/page_state.h" | 13 #include "content/public/common/page_state.h" |
| 14 #include "content/public/common/referrer.h" | 14 #include "content/public/common/referrer.h" |
| 15 #include "url/origin.h" | |
|
Charlie Reis
2016/04/19 22:32:52
nit: No changes needed to this file.
| |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 | 18 |
| 18 // Represents a session history item for a particular frame. | 19 // Represents a session history item for a particular frame. |
| 19 // | 20 // |
| 20 // This class is refcounted and can be shared across multiple NavigationEntries. | 21 // This class is refcounted and can be shared across multiple NavigationEntries. |
| 21 // For now, it is owned by a single NavigationEntry and only tracks the main | 22 // For now, it is owned by a single NavigationEntry and only tracks the main |
| 22 // frame. | 23 // frame. |
| 23 // | 24 // |
| 24 // If SiteIsolationPolicy::UseSubframeNavigationEntries is true, there will be a | 25 // If SiteIsolationPolicy::UseSubframeNavigationEntries is true, there will be a |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 140 PageState page_state_; | 141 PageState page_state_; |
| 141 std::string method_; | 142 std::string method_; |
| 142 int64_t post_id_; | 143 int64_t post_id_; |
| 143 | 144 |
| 144 DISALLOW_COPY_AND_ASSIGN(FrameNavigationEntry); | 145 DISALLOW_COPY_AND_ASSIGN(FrameNavigationEntry); |
| 145 }; | 146 }; |
| 146 | 147 |
| 147 } // namespace content | 148 } // namespace content |
| 148 | 149 |
| 149 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_NAVIGATION_ENTRY_H_ | 150 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_NAVIGATION_ENTRY_H_ |
| OLD | NEW |