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