Home
last modified time | relevance | path

Searched refs:bubble (Results 1 – 25 of 128) sorted by relevance

123456

/external/chromium/chrome/browser/speech/
Dspeech_input_bubble_browsertest.cc24 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( in IN_PROC_BROWSER_TEST_F() local
26 EXPECT_TRUE(bubble.get()); in IN_PROC_BROWSER_TEST_F()
31 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( in IN_PROC_BROWSER_TEST_F() local
33 EXPECT_TRUE(bubble.get()); in IN_PROC_BROWSER_TEST_F()
34 bubble->Show(); in IN_PROC_BROWSER_TEST_F()
39 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( in IN_PROC_BROWSER_TEST_F() local
41 EXPECT_TRUE(bubble.get()); in IN_PROC_BROWSER_TEST_F()
42 bubble->Show(); in IN_PROC_BROWSER_TEST_F()
43 bubble->Hide(); in IN_PROC_BROWSER_TEST_F()
48 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( in IN_PROC_BROWSER_TEST_F() local
[all …]
Dspeech_input_bubble_controller.cc44 SpeechInputBubble* bubble = SpeechInputBubble::Create(tab_contents, this, in CreateBubble() local
46 if (!bubble) // could be null if tab or display rect were invalid. in CreateBubble()
49 bubbles_[caller_id] = bubble; in CreateBubble()
162 SpeechInputBubble* bubble = bubbles_[caller_id]; in ProcessRequestInUiThread() local
165 bubble->SetWarmUpMode(); in ProcessRequestInUiThread()
168 bubble->SetRecordingMode(); in ProcessRequestInUiThread()
171 bubble->SetRecognizingMode(); in ProcessRequestInUiThread()
174 bubble->SetMessage(text); in ProcessRequestInUiThread()
177 bubble->SetInputVolume(volume, noise_volume); in ProcessRequestInUiThread()
183 delete bubble; in ProcessRequestInUiThread()
[all …]
/external/chromium-trace/src/shared/css/
Dexpandable_bubble.css6 .expandable-bubble {
20 .expandable-bubble::after {
30 .expandable-bubble > .expandable-bubble-contents > .expandable-bubble-title {
38 .expandable-bubble[masked] > .expandable-bubble-contents >
39 .expandable-bubble-title::after {
50 .expandable-bubble[expanded] > .expandable-bubble-contents >
51 .expandable-bubble-title {
57 .expandable-bubble-close {
67 .expandable-bubble[expanded] {
69 z-index: 3; /* One higher then the close button on an unexpanded bubble. */
[all …]
Dbubble.css6 .bubble {
13 .bubble-contents {
25 .bubble-close {
35 html[dir='rtl'] .bubble-close {
40 .bubble-close {
44 .bubble-close:hover {
48 .bubble-close:active {
52 .bubble-shadow {
61 .bubble-arrow {
78 .bubble-contents,
[all …]
/external/chromium/chrome/browser/ui/views/frame/
Dbrowser_bubble_host.cc19 BubbleSet::iterator bubble = i++; in WindowMoved() local
20 (*bubble)->BrowserWindowMoved(); in WindowMoved()
24 void BrowserBubbleHost::AttachBrowserBubble(BrowserBubble* bubble) { in AttachBrowserBubble() argument
25 DCHECK(browser_bubbles_.find(bubble) == browser_bubbles_.end()) << in AttachBrowserBubble()
27 browser_bubbles_.insert(bubble); in AttachBrowserBubble()
30 void BrowserBubbleHost::DetachBrowserBubble(BrowserBubble* bubble) { in DetachBrowserBubble() argument
31 BubbleSet::iterator it = browser_bubbles_.find(bubble); in DetachBrowserBubble()
43 BubbleSet::iterator bubble = i++; in Close() local
44 (*bubble)->BrowserWindowClosing(); in Close()
Dbrowser_bubble_host.h33 void AttachBrowserBubble(BrowserBubble* bubble);
34 void DetachBrowserBubble(BrowserBubble* bubble);
/external/quake/quake/src/QW/progs/
Dmisc.qc451 local entity bubble;
453 bubble = spawn();
454 setmodel (bubble, "progs/s_bubble.spr");
455 setorigin (bubble, self.origin);
456 bubble.movetype = MOVETYPE_NOCLIP;
457 bubble.solid = SOLID_NOT;
458 bubble.velocity = '0 0 15';
459 bubble.nextthink = time + 0.5;
460 bubble.think = bubble_bob;
461 bubble.touch = bubble_remove;
[all …]
/external/chromium/chrome/browser/chromeos/login/
Dmessage_bubble.cc115 MessageBubble* bubble = new MessageBubble( in Show() local
117 bubble->InitBubble(parent, position_relative_to, arrow_location, in Show()
118 bubble->text_->parent(), delegate); in Show()
119 return bubble; in Show()
132 MessageBubble* bubble = new MessageBubble( in ShowNoGrab() local
134 bubble->InitBubble(parent, position_relative_to, arrow_location, in ShowNoGrab()
135 bubble->text_->parent(), delegate); in ShowNoGrab()
136 return bubble; in ShowNoGrab()
/external/webkit/Source/WebCore/bindings/gobject/
DWebKitDOMEventTarget.h47 gboolean bubble,
52 gboolean bubble);
65 gboolean bubble,
71 gboolean bubble);
DWebKitDOMEventTarget.cpp78 …MEventTarget* target, const char* eventName, GCallback handler, gboolean bubble, gpointer userData) in webkit_dom_event_target_add_event_listener() argument
87 return iface->add_event_listener(target, eventName, handler, bubble, userData); in webkit_dom_event_target_add_event_listener()
92 …t_listener(WebKitDOMEventTarget* target, const char* eventName, GCallback handler, gboolean bubble) in webkit_dom_event_target_remove_event_listener() argument
100 return iface->remove_event_listener(target, eventName, handler, bubble); in webkit_dom_event_target_remove_event_listener()
/external/chromium/chrome/browser/ui/views/
Dbrowser_bubble.h26 virtual void BubbleBrowserWindowMoved(BrowserBubble* bubble) {} in BubbleBrowserWindowMoved() argument
30 virtual void BubbleBrowserWindowClosing(BrowserBubble* bubble) {} in BubbleBrowserWindowClosing() argument
33 virtual void BubbleGotFocus(BrowserBubble* bubble) {} in BubbleGotFocus() argument
37 virtual void BubbleLostFocus(BrowserBubble* bubble, in BubbleLostFocus() argument
Dpinned_contents_info_bubble.cc44 PinnedContentsInfoBubble* bubble = in Show() local
46 bubble->InitBubble(parent, position_relative_to, arrow_location, in Show()
48 return bubble; in Show()
Dpage_info_bubble_view.h36 void set_bubble(Bubble* bubble) { bubble_ = bubble; } in set_bubble() argument
45 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
Dfirst_run_bubble.cc477 FirstRunBubble* bubble = new FirstRunBubble(); in Show() local
482 view = new FirstRunOEMBubbleView(bubble, profile); in Show()
485 view = new FirstRunBubbleView(bubble, profile); in Show()
488 view = new FirstRunMinimalBubbleView(bubble, profile); in Show()
493 bubble->set_view(view); in Show()
494 bubble->InitBubble( in Show()
495 parent, position_relative_to, arrow_location, view, bubble); in Show()
496 bubble->GetFocusManager()->AddFocusChangeListener(view); in Show()
498 return bubble; in Show()
553 void FirstRunBubble::BubbleClosing(Bubble* bubble, bool closed_by_escape) { in BubbleClosing() argument
/external/chromium/chrome/browser/ui/views/extensions/
Dextension_popup.h78 virtual void BubbleBrowserWindowMoved(BrowserBubble* bubble);
79 virtual void BubbleBrowserWindowClosing(BrowserBubble* bubble);
80 virtual void BubbleGotFocus(BrowserBubble* bubble);
81 virtual void BubbleLostFocus(BrowserBubble* bubble,
Dextension_popup.cc91 void ExtensionPopup::BubbleBrowserWindowMoved(BrowserBubble* bubble) { in BubbleBrowserWindowMoved() argument
95 void ExtensionPopup::BubbleBrowserWindowClosing(BrowserBubble* bubble) { in BubbleBrowserWindowClosing() argument
100 void ExtensionPopup::BubbleGotFocus(BrowserBubble* bubble) { in BubbleGotFocus() argument
105 void ExtensionPopup::BubbleLostFocus(BrowserBubble* bubble, in BubbleLostFocus() argument
/external/chromium/chrome/browser/resources/options/
Dsearch_page.css9 .search-bubble {
24 .search-bubble:after {
34 .search-bubble-wrapper {
/external/chromium/chrome/browser/ui/cocoa/
Dstatus_bubble_mac.mm26 // The width of the bubble in relation to the width of the parent window.
38 // The status bubble's maximum opacity, when fully faded in.
41 // Delay before showing or hiding the bubble after a SetStatus or SetURL call.
55 // How quickly the status bubble should expand, in seconds.
133 // Reset frame size when bubble is hidden.
165 // If the bubble has been expanded, the user has already hovered over a link
166 // to trigger the expanded state. Don't wait to change the bubble in this
178 // The status bubble allows the status and URL strings to be set
180 // value displayed. When both are empty, the status bubble hides.
244 // Stop any width animation and reset the bubble size.
[all …]
Dfirst_run_bubble_controller.mm27 // Autoreleases itself on bubble close.
42 // On 10.5, the first run bubble sometimes does not disappear when clicking
43 // the omnibox. This happens if the bubble never became key, due to it
58 CGFloat dy = cocoa_l10n_util::VerticallyReflowGroup([[self bubble] subviews]);
60 ds = [[self bubble] convertSize:ds toView:nil];
Dstatus_bubble_mac_unittest.mm19 // The test delegate records all of the status bubble object's state
97 // Not using a scoped_ptr because bubble must be deleted before calling
98 // TearDown to get rid of bubble's window.
175 // Test hiding bubble that's already hidden.
212 // Test that the status bubble goes through the correct delay and fade states.
437 StatusBubbleMac* bubble = new StatusBubbleMac(window, nil);
438 delete bubble;
441 bubble = new StatusBubbleMac(window, nil);
442 bubble->SetStatus(UTF8ToUTF16("showing"));
443 delete bubble;
[all …]
/external/chromium/chrome/browser/ui/views/bubble/
Dbubble.cc57 Bubble* bubble = new Bubble; in Show() local
58 bubble->InitBubble(parent, position_relative_to, arrow_location, in Show()
60 return bubble; in Show()
72 Bubble* bubble = new Bubble(views::WidgetGtk::TYPE_POPUP, in ShowFocusless() local
74 bubble->InitBubble(parent, position_relative_to, arrow_location, in ShowFocusless()
76 return bubble; in ShowFocusless()
/external/chromium/chrome/browser/ui/views/bookmarks/
Dbookmark_bubble_view.h52 void set_bubble(Bubble* bubble) { bubble_ = bubble; } in set_bubble() argument
90 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
/external/chromium/chrome/browser/ui/cocoa/content_settings/
Dcontent_setting_bubble_cocoa.mm44 // Height of each of the labels in the geolocation bubble.
47 // Height of the "Clear" button in the geolocation bubble.
51 // in the plugin bubble.
54 // General padding between elements in the geolocation bubble.
57 // Padding between host names in the geolocation bubble.
109 // Autoreleases itself on bubble close.
130 @"", // Notifications do not have a bubble.
131 @"", // Prerender does not have a bubble.
136 // Nofifications do not have a bubble.
218 int maxWidth = NSWidth([[self bubble] frame]) - 2 * NSMinX(referenceFrame);
[all …]
Dcontent_setting_bubble_cocoa_unittest.mm32 // Check that the bubble doesn't crash or leak for any settings type
36 continue; // Notifications have no bubble.
38 continue; // Prerender has no bubble.
/external/webkit/Tools/QueueStatusServer/handlers/
Dstatusbubble_unittest.py49 bubble = StatusBubble()
52 bubble_dict = bubble._build_bubble(queue, attachment)

123456