/external/chromium/chrome/browser/speech/ |
H A D | speech_input_bubble_browsertest.cc | 24 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( 26 EXPECT_TRUE(bubble.get()); 31 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( 33 EXPECT_TRUE(bubble.get()); 34 bubble->Show(); 39 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( 41 EXPECT_TRUE(bubble.get()); 42 bubble->Show(); 43 bubble->Hide(); 48 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubbl [all...] |
H A D | speech_input_bubble_controller.cc | 44 SpeechInputBubble* bubble = SpeechInputBubble::Create(tab_contents, this, local 46 if (!bubble) // could be null if tab or display rect were invalid. 49 bubbles_[caller_id] = bubble; 97 // At least one other bubble exists for the same TabContents. So don't 149 // The bubble may have been closed before we got a chance to process this 162 SpeechInputBubble* bubble = bubbles_[caller_id]; local 165 bubble->SetWarmUpMode(); 168 bubble->SetRecordingMode(); 171 bubble->SetRecognizingMode(); 174 bubble [all...] |
/external/chromium/chrome/browser/ui/views/frame/ |
H A D | browser_bubble_host.cc | 15 // Do safe iteration in case the bubble winds up closing as a result of this 19 BubbleSet::iterator bubble = i++; local 20 (*bubble)->BrowserWindowMoved(); 24 void BrowserBubbleHost::AttachBrowserBubble(BrowserBubble* bubble) { argument 25 DCHECK(browser_bubbles_.find(bubble) == browser_bubbles_.end()) << 27 browser_bubbles_.insert(bubble); 30 void BrowserBubbleHost::DetachBrowserBubble(BrowserBubble* bubble) { argument 31 BubbleSet::iterator it = browser_bubbles_.find(bubble); 39 // BrowserWindowClosing will usually cause the bubble to remove itself from 43 BubbleSet::iterator bubble local [all...] |
H A D | browser_bubble_host.h | 31 // Registers/Unregisters |bubble| to receive notifications when the host moves 33 void AttachBrowserBubble(BrowserBubble* bubble); 34 void DetachBrowserBubble(BrowserBubble* bubble);
|
/external/webkit/Tools/QueueStatusServer/handlers/ |
H A D | statusbubble_unittest.py | 49 bubble = StatusBubble() 52 bubble_dict = bubble._build_bubble(queue, attachment)
|
H A D | dashboard.py | 45 bubble = { 49 return bubble
|
H A D | statusbubble.py | 44 bubble = { 51 return bubble
|
/external/webkit/Source/WebCore/bindings/gobject/ |
H A D | WebKitDOMEventTarget.h | 47 gboolean bubble, 52 gboolean bubble); 65 gboolean bubble, 71 gboolean bubble);
|
H A D | WebKitDOMEventTarget.cpp | 78 gboolean webkit_dom_event_target_add_event_listener(WebKitDOMEventTarget* target, const char* eventName, GCallback handler, gboolean bubble, gpointer userData) argument 87 return iface->add_event_listener(target, eventName, handler, bubble, userData); 92 gboolean webkit_dom_event_target_remove_event_listener(WebKitDOMEventTarget* target, const char* eventName, GCallback handler, gboolean bubble) argument 100 return iface->remove_event_listener(target, eventName, handler, bubble);
|
/external/chromium/chrome/browser/chromeos/login/ |
H A D | message_bubble.cc | 114 // The bubble will be destroyed when it is closed. 115 MessageBubble* bubble = new MessageBubble( local 117 bubble->InitBubble(parent, position_relative_to, arrow_location, 118 bubble->text_->parent(), delegate); 119 return bubble; 131 // The bubble will be destroyed when it is closed. 132 MessageBubble* bubble = new MessageBubble( local 134 bubble->InitBubble(parent, position_relative_to, arrow_location, 135 bubble->text_->parent(), delegate); 136 return bubble; [all...] |
H A D | network_screen.h | 65 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) { argument 109 // Pointer to shown message bubble. We don't need to delete it because 110 // it will be deleted on bubble closing.
|
/external/chromium/chrome/browser/ui/views/ |
H A D | browser_bubble.h | 9 #include "chrome/browser/ui/views/bubble/bubble_border.h" 16 // Browser. If you don't install a delegate, the bubble will hide 17 // automatically when the browser moves. The bubble is only shown manually. 18 // Users are expected to delete the bubble when finished with it. 22 // Delegate to browser bubble events. 25 // Called when the Browser Window that this bubble is attached to moves. 26 virtual void BubbleBrowserWindowMoved(BrowserBubble* bubble) {} argument 28 // Called with the Browser Window that this bubble is attached to is 30 virtual void BubbleBrowserWindowClosing(BrowserBubble* bubble) {} argument 32 // Called when the bubble becam 33 BubbleGotFocus(BrowserBubble* bubble) argument 37 BubbleLostFocus(BrowserBubble* bubble, bool lost_focus_to_child) argument [all...] |
H A D | page_info_bubble_view.h | 10 #include "chrome/browser/ui/views/bubble/bubble.h" 36 void set_bubble(Bubble* bubble) { bubble_ = bubble; } argument 45 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape); 58 // Layout the sections within the bubble. 61 // Global pointer to the bubble that is hosting our view. 73 // The Help Center link at the bottom of the bubble. 79 // The height of the info bubble at the start of the resize animation.
|
H A D | pinned_contents_info_bubble.cc | 7 #include "chrome/browser/ui/views/bubble/bubble_border.h" 27 true, // Don't move the bubble around if it does not fit on the screen. 30 // Now move the y position to make sure the bubble contents overlap the view. 44 PinnedContentsInfoBubble* bubble = local 46 bubble->InitBubble(parent, position_relative_to, arrow_location, 48 return bubble;
|
H A D | content_setting_bubble_contents.h | 20 // were blocked, and the user can click one to get a bubble hosting a few 21 // controls. This class provides the content of that bubble. In general, 47 // Sets |bubble_|, so we can close the bubble if needed. The caller owns 48 // the bubble and must keep it alive. 49 void set_bubble(Bubble* bubble) { bubble_ = bubble; } argument 75 // Provides data for this bubble.
|
H A D | first_run_bubble.h | 12 #include "chrome/browser/ui/views/bubble/bubble.h" 40 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
|
H A D | browser_bubble_gtk.cc | 9 #include "chrome/browser/ui/views/bubble/border_contents.h" 25 explicit BubbleWidget(BrowserBubble* bubble) argument 27 bubble_(bubble),
|
H A D | browser_bubble_win.cc | 7 #include "chrome/browser/ui/views/bubble/border_contents.h" 8 #include "chrome/browser/ui/views/bubble/border_widget_win.h" 16 explicit BubbleWidget(BrowserBubble* bubble) argument 17 : bubble_(bubble),
|
/external/chromium/chrome/browser/ui/views/extensions/ |
H A D | extension_popup.h | 12 #include "chrome/browser/ui/views/bubble/bubble_border.h" 78 virtual void BubbleBrowserWindowMoved(BrowserBubble* bubble); 79 virtual void BubbleBrowserWindowClosing(BrowserBubble* bubble); 80 virtual void BubbleGotFocus(BrowserBubble* bubble); 81 virtual void BubbleLostFocus(BrowserBubble* bubble,
|
H A D | extension_popup.cc | 91 void ExtensionPopup::BubbleBrowserWindowMoved(BrowserBubble* bubble) { argument 95 void ExtensionPopup::BubbleBrowserWindowClosing(BrowserBubble* bubble) { argument 100 void ExtensionPopup::BubbleGotFocus(BrowserBubble* bubble) { argument 105 void ExtensionPopup::BubbleLostFocus(BrowserBubble* bubble, argument
|
/external/chromium/chrome/browser/ui/views/bookmarks/ |
H A D | bookmark_bubble_view.h | 11 #include "chrome/browser/ui/views/bubble/bubble.h" 52 void set_bubble(Bubble* bubble) { bubble_ = bubble; } argument 54 // Invoked after the bubble has been shown. 80 // ButtonListener method, closes the bubble or opens the edit dialog. 90 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape); 95 // Closes the bubble. 107 // The bookmark bubble, if we're showing one. 113 // Delegate for the bubble, ma [all...] |
/external/chromium/chrome/browser/chromeos/ |
H A D | setting_level_bubble.h | 11 #include "chrome/browser/ui/views/bubble/bubble.h" 21 // Singleton class controlling a bubble displaying a level-based setting like 29 // Update the bubble's current level without showing the bubble onscreen. 30 // We _do_ still animate the level moving to |percent| in case the bubble is 35 // time that the bubble is shown. For example: 42 // displayed in response to 3) would show the bubble animating from 50% down 56 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape); 68 // Icons displayed in the bubble whe [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
H A D | base_bubble_controller.h | 16 // Base class for bubble controllers. Manages a xib that contains an 18 // the bubble window on clicks outside of the window, and the like. 38 @property(nonatomic, readonly) InfoBubbleView* bubble; variable 40 // Creates a bubble. |nibPath| is just the basename, e.g. @"FirstRunBubble". 42 // bubble visible. It will autorelease itself when the user dismisses the 43 // bubble. 50 // Creates a bubble. |nibPath| is just the basename, e.g. @"FirstRunBubble". 51 // |view| must be in a window. The bubble will point at |offset| relative to 53 // bubble visible. It will autorelease itself when the user dismisses the 54 // bubble [all...] |
/external/chromium/chrome/browser/ui/views/location_bar/ |
H A D | star_view.h | 9 #include "chrome/browser/ui/views/bubble/bubble.h" 38 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE;
|
/external/chromium/chrome/browser/ui/views/bubble/ |
H A D | bubble.cc | 5 #include "chrome/browser/ui/views/bubble/bubble.h" 9 #include "chrome/browser/ui/views/bubble/border_contents.h" 26 #include "chrome/browser/ui/views/bubble/border_widget_win.h" 34 // Background color of the bubble. 57 Bubble* bubble = new Bubble; local 58 bubble->InitBubble(parent, position_relative_to, arrow_location, 60 return bubble; 72 Bubble* bubble = new Bubble(views::WidgetGtk::TYPE_POPUP, local 74 bubble [all...] |