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 CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 GURL target_url; | 22 GURL target_url; |
23 | 23 |
24 // The target tab contents. | 24 // The target tab contents. |
25 TabContents* target_tab_contents; | 25 TabContents* target_tab_contents; |
26 | 26 |
27 // True if the target_tab_contents is not yet inserted into a tab strip. | 27 // True if the target_tab_contents is not yet inserted into a tab strip. |
28 bool not_yet_in_tabstrip; | 28 bool not_yet_in_tabstrip; |
29 }; | 29 }; |
30 | 30 |
31 #endif // CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ | 31 #endif // CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ |
OLD | NEW |