HomeSort by relevance Sort by last modified time
    Searched refs:bubble (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium/chrome/browser/speech/
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(SpeechInputBubble::Create
    [all...]
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->SetMessage(text)
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
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) {
25 DCHECK(browser_bubbles_.find(bubble) == browser_bubbles_.end()) <<
27 browser_bubbles_.insert(bubble);
30 void BrowserBubbleHost::DetachBrowserBubble(BrowserBubble* bubble) {
31 BubbleSet::iterator it = browser_bubbles_.find(bubble);
39 // BrowserWindowClosing will usually cause the bubble to remove itself from
43 BubbleSet::iterator bubble = i++ local
    [all...]
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/chromium/chrome/browser/ui/views/
page_info_bubble_view.h 10 #include "chrome/browser/ui/views/bubble/bubble.h"
36 void set_bubble(Bubble* bubble) { bubble_ = bubble; }
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.
62 static Bubble* bubble_
    [all...]
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) {}
28 // Called with the Browser Window that this bubble is attached to is
30 virtual void BubbleBrowserWindowClosing(BrowserBubble* bubble) {}
32 // Called when the bubble became active / got focus
    [all...]
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.
34 // Bubble -----------------------------------------------------------------
44 PinnedContentsInfoBubble* bubble = local
46 bubble->InitBubble(parent, position_relative_to, arrow_location,
48 return bubble;
first_run_bubble.h 12 #include "chrome/browser/ui/views/bubble/bubble.h"
17 class FirstRunBubble : public Bubble,
35 // Overridden from Bubble:
40 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
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,
27 class Bubble;
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; }
75 // Provides data for this bubble.
87 // The Bubble holding us
    [all...]
  /external/chromium/chrome/browser/ui/views/extensions/
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,
extension_installed_bubble.h 10 #include "chrome/browser/ui/views/bubble/bubble.h"
21 // extension. Depending on the type of extension, the Bubble will
26 // bar which is shown while the Bubble is shown.
36 // The behavior and content of this Bubble comes in these varieties:
46 // is the browser window which will host the bubble. |icon| is the install
60 // Shows the bubble. Called internally via PostTask.
69 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
extension_popup.cc 91 void ExtensionPopup::BubbleBrowserWindowMoved(BrowserBubble* bubble) {
95 void ExtensionPopup::BubbleBrowserWindowClosing(BrowserBubble* bubble) {
100 void ExtensionPopup::BubbleGotFocus(BrowserBubble* bubble) {
105 void ExtensionPopup::BubbleLostFocus(BrowserBubble* bubble,
  /external/webkit/Source/WebCore/bindings/gobject/
WebKitDOMEventTarget.h 47 gboolean bubble,
52 gboolean bubble);
65 gboolean bubble,
71 gboolean bubble);
WebKitDOMEventTarget.cpp 78 gboolean webkit_dom_event_target_add_event_listener(WebKitDOMEventTarget* target, const char* eventName, GCallback handler, gboolean bubble, gpointer userData)
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)
100 return iface->remove_event_listener(target, eventName, handler, bubble);
  /external/chromium/chrome/browser/chromeos/login/
message_bubble.cc 30 : Bubble(type, false), // don't show while screen is locked
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)
    [all...]
network_screen.h 65 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) {
109 // Pointer to shown message bubble. We don't need to delete it because
110 // it will be deleted on bubble closing.
  /external/webkit/Tools/QueueStatusServer/handlers/
statusbubble_unittest.py 49 bubble = StatusBubble()
52 bubble_dict = bubble._build_bubble(queue, attachment)
dashboard.py 45 bubble = {
49 return bubble
statusbubble.py 44 bubble = {
51 return bubble
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bubble_view.h 11 #include "chrome/browser/ui/views/bubble/bubble.h"
30 // Bubble. BookmarkBubbleView provides views for unstarring and editing the
52 void set_bubble(Bubble* bubble) { bubble_ = bubble; }
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)
    [all...]
  /external/chromium/chrome/browser/chromeos/
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)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
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/gtk/extensions/
extension_popup_gtk.h 42 virtual void InfoBubbleClosing(InfoBubbleGtk* bubble,
50 // ourselves when the info bubble closes. Returns true if we successfully
51 // closed the bubble.
80 // The widget for anchoring the position of the info bubble.
87 // Whether a devtools window is attached to this bubble.
  /external/chromium/chrome/browser/ui/views/location_bar/
star_view.h 9 #include "chrome/browser/ui/views/bubble/bubble.h"
13 class Bubble;
38 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE;
  /external/chromium/chrome/browser/ui/views/bubble/
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.
36 const SkColor Bubble::kBackgroundColor =
40 const SkColor Bubble::kBackgroundColor = SK_ColorWHITE;
49 // Bubble -----------------------------------------------------------------
52 Bubble* Bubble::Show(views::Widget* parent
57 Bubble* bubble = new Bubble; local
72 Bubble* bubble = new Bubble(views::WidgetGtk::TYPE_POPUP, local
    [all...]

Completed in 299 milliseconds

1 2 3