| 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_UI_GTK_WEB_INTENT_PICKER_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_WEB_INTENT_PICKER_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_WEB_INTENT_PICKER_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_WEB_INTENT_PICKER_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 // A button to close the bubble. | 93 // A button to close the bubble. |
| 94 scoped_ptr<CustomDrawButton> close_button_; | 94 scoped_ptr<CustomDrawButton> close_button_; |
| 95 | 95 |
| 96 // A weak pointer to the bubble widget. | 96 // A weak pointer to the bubble widget. |
| 97 BubbleGtk* bubble_; | 97 BubbleGtk* bubble_; |
| 98 | 98 |
| 99 // The browser we're in. | 99 // The browser we're in. |
| 100 Browser* browser_; | 100 Browser* browser_; |
| 101 | 101 |
| 102 // TabContentsDelegate for the inline disposition dialog. | |
| 103 scoped_ptr<InlineDispositionDelegate> inline_disposition_delegate_; | |
| 104 | |
| 105 // Container for the HTML in the inline disposition case. | 102 // Container for the HTML in the inline disposition case. |
| 106 scoped_ptr<TabContentsWrapper> inline_disposition_tab_contents_; | 103 scoped_ptr<TabContentsWrapper> inline_disposition_tab_contents_; |
| 107 | 104 |
| 108 // Widget for displaying the HTML in the inline disposition case. | 105 // Widget for displaying the HTML in the inline disposition case. |
| 109 scoped_ptr<TabContentsContainerGtk> tab_contents_container_; | 106 scoped_ptr<TabContentsContainerGtk> tab_contents_container_; |
| 110 | 107 |
| 108 // TabContentsDelegate for the inline disposition dialog. |
| 109 scoped_ptr<InlineDispositionDelegate> inline_disposition_delegate_; |
| 110 |
| 111 DISALLOW_COPY_AND_ASSIGN(WebIntentPickerGtk); | 111 DISALLOW_COPY_AND_ASSIGN(WebIntentPickerGtk); |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 #endif // CHROME_BROWSER_UI_GTK_WEB_INTENT_PICKER_GTK_H_ | 114 #endif // CHROME_BROWSER_UI_GTK_WEB_INTENT_PICKER_GTK_H_ |
| OLD | NEW |