Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: chrome/browser/ui/gtk/web_intent_picker_gtk.h

Issue 8508019: Add a method to the controller to close the picker/service tab when a return value is passed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change delegate comment to notification sense of OnClosing. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/gtk/web_intent_picker_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/gtk/web_intent_picker_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698