| 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_BROWSER_TAB_CONTENTS_NAVIGATION_DETAILS_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_DETAILS_H_ |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_DETAILS_H_ | 6 #define CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_DETAILS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "content/public/browser/navigation_types.h" | 11 #include "content/public/browser/navigation_type.h" |
| 12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 13 | 13 |
| 14 class NavigationEntry; | 14 class NavigationEntry; |
| 15 class TabContents; | 15 class TabContents; |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 | 18 |
| 19 // Provides the details for a NOTIFY_NAV_ENTRY_COMMITTED notification. | 19 // Provides the details for a NOTIFY_NAV_ENTRY_COMMITTED notification. |
| 20 // TODO(brettw) this mostly duplicates ProvisionalLoadDetails, it would be | 20 // TODO(brettw) this mostly duplicates ProvisionalLoadDetails, it would be |
| 21 // nice to unify these somehow. | 21 // nice to unify these somehow. |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // The target URL. | 98 // The target URL. |
| 99 GURL target_url; | 99 GURL target_url; |
| 100 | 100 |
| 101 // The target tab contents. | 101 // The target tab contents. |
| 102 TabContents* target_tab_contents; | 102 TabContents* target_tab_contents; |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 } // namespace content | 105 } // namespace content |
| 106 | 106 |
| 107 #endif // CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_DETAILS_H_ | 107 #endif // CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_DETAILS_H_ |
| OLD | NEW |