Searched defs:delegate (Results 276 - 300 of 1356) sorted by last modified time

<<11121314151617181920>>

/external/chromium_org/ui/gfx/
H A Dplatform_font_pango.cc82 const gfx::LinuxFontDelegate* delegate = gfx::LinuxFontDelegate::instance(); local
83 if (delegate)
84 description = delegate->GetDefaultPangoFontDescription();
H A Dscreen.cc47 void Screen::SetScreenTypeDelegate(ScreenTypeDelegate* delegate) { argument
48 g_screen_type_delegate_ = delegate;
/external/chromium_org/ui/keyboard/
H A Dkeyboard_controller_unittest.cc90 // Destroy the window before the delegate.
274 aura::test::EventCountDelegate delegate; local
275 scoped_ptr<aura::Window> window(new aura::Window(&delegate));
305 EXPECT_EQ("0 0", delegate.GetMouseButtonCountsAndReset());
312 EXPECT_EQ("1 1", delegate.GetMouseButtonCountsAndReset());
318 aura::test::EventCountDelegate delegate; local
319 scoped_ptr<aura::Window> window(new aura::Window(&delegate));
356 aura::test::EventCountDelegate delegate; local
357 scoped_ptr<aura::Window> window(new aura::Window(&delegate));
/external/chromium_org/ui/message_center/
H A Dmessage_center_impl.cc540 scoped_refptr<NotificationDelegate> delegate = local
542 return delegate.get() && delegate->HasClickedListener();
650 scoped_refptr<NotificationDelegate> delegate = local
652 if (delegate.get())
653 delegate->Close(by_user);
696 scoped_refptr<NotificationDelegate> delegate = (*iter)->delegate(); local
697 if (delegate.get())
698 delegate
791 scoped_refptr<NotificationDelegate> delegate = local
805 scoped_refptr<NotificationDelegate> delegate = local
833 scoped_refptr<NotificationDelegate> delegate = local
[all...]
H A Dmessage_center_tray.cc74 return tray_->delegate()->IsContextMenuEnabled();
99 MessageCenterTrayDelegate* delegate,
104 delegate_(delegate) {
98 MessageCenterTray( MessageCenterTrayDelegate* delegate, message_center::MessageCenter* message_center) argument
H A Dmessage_center_tray.h35 MessageCenterTray(MessageCenterTrayDelegate* delegate,
70 MessageCenterTrayDelegate* delegate() { return delegate_; } function in class:message_center::MessageCenterTray
H A Dnotification.cc59 NotificationDelegate* delegate)
71 delegate_(delegate) {}
114 delegate_ = base->delegate();
51 Notification(NotificationType type, const std::string& id, const base::string16& title, const base::string16& message, const gfx::Image& icon, const base::string16& display_source, const NotifierId& notifier_id, const RichNotificationData& optional_fields, NotificationDelegate* delegate) argument
H A Dnotification.h65 NotificationDelegate* delegate);
174 NotificationDelegate* delegate() const { return delegate_.get(); } function in class:message_center::Notification
185 void Display() const { delegate()->Display(); }
186 void Error() const { delegate()->Error(); }
187 bool HasClickedListener() const { return delegate()->HasClickedListener(); }
188 void Click() const { delegate()->Click(); }
189 void ButtonClick(int index) const { delegate()->ButtonClick(index); }
190 void Close(bool by_user) const { delegate()->Close(by_user); }
/external/chromium_org/ui/ozone/platform/caca/
H A Dcaca_window.cc29 CacaWindow::CacaWindow(PlatformWindowDelegate* delegate, argument
33 : delegate_(delegate),
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_surface_factory_unittest.cc93 scoped_ptr<ui::DriWindowDelegate> delegate = local
96 delegate->Shutdown();
H A Ddri_window.cc20 DriWindow::DriWindow(PlatformWindowDelegate* delegate, argument
26 : delegate_(delegate),
H A Ddri_window_delegate_manager.cc20 scoped_ptr<DriWindowDelegate> delegate) {
22 delegate_map_.add(widget, delegate.Pass());
28 scoped_ptr<DriWindowDelegate> delegate = delegate_map_.take_and_erase(widget); local
29 DCHECK(delegate) << "Attempting to remove non-existing delegate for "
31 return delegate.Pass();
40 NOTREACHED() << "Attempting to get non-existing delegate for " << widget;
18 AddWindowDelegate( gfx::AcceleratedWidget widget, scoped_ptr<DriWindowDelegate> delegate) argument
H A Dgbm_surface_factory.cc152 DriWindowDelegate* delegate = GetOrCreateWindowDelegate(widget); local
154 scoped_ptr<GbmSurface> surface(new GbmSurface(delegate, device_, drm_));
167 DriWindowDelegate* delegate = GetOrCreateWindowDelegate(widget);
168 return scoped_ptr<SurfaceOzoneEGL>(new GbmSurfaceless(delegate));
222 scoped_ptr<DriWindowDelegate> delegate(
224 delegate->Initialize();
225 window_manager_->AddWindowDelegate(widget, delegate.Pass());
H A Dgpu_platform_support_gbm.cc65 // create a delegate if it already exists.
67 scoped_ptr<DriWindowDelegate> delegate(
69 delegate->Initialize();
70 window_manager_->AddWindowDelegate(widget, delegate.Pass());
76 scoped_ptr<DriWindowDelegate> delegate = local
78 delegate->Shutdown();
/external/chromium_org/ui/ozone/platform/egltest/
H A Dozone_platform_egltest.cc53 EgltestWindow(PlatformWindowDelegate* delegate,
88 EgltestWindow::EgltestWindow(PlatformWindowDelegate* delegate, argument
92 : delegate_(delegate),
336 PlatformWindowDelegate* delegate,
339 new EgltestWindow(delegate,
/external/chromium_org/ui/ozone/platform/test/
H A Dtest_window.cc17 TestWindow::TestWindow(PlatformWindowDelegate* delegate, argument
20 : delegate_(delegate), manager_(manager), bounds_(bounds) {
/external/chromium_org/ui/platform_window/win/
H A Dwin_window.cc38 WinWindow::WinWindow(PlatformWindowDelegate* delegate, argument
40 : delegate_(delegate) {
/external/chromium_org/ui/platform_window/x11/
H A Dx11_window.cc43 X11Window::X11Window(PlatformWindowDelegate* delegate) argument
44 : delegate_(delegate),
/external/chromium_org/ui/shell_dialogs/
H A Dselect_file_dialog.cc31 // The global shell dialogs delegate.
132 void SelectFileDialog::SetShellDialogsDelegate(ShellDialogsDelegate* delegate) { argument
133 g_shell_dialogs_delegate_ = delegate;
/external/chromium_org/ui/views/animation/
H A Dbounds_animator.cc32 // Reset the delegate so that we don't attempt to notify our observer from
115 scoped_ptr<AnimationDelegate> delegate) {
118 data_[view].delegate = delegate.release();
143 // Invoke AnimationContainerProgressed to force a repaint and notify delegate.
176 if (send_cancel && data->delegate)
177 data->delegate->AnimationCanceled(data->animation);
179 delete data->delegate;
180 data->delegate = NULL;
196 // Reset the delegate s
113 SetAnimationDelegate( View* view, scoped_ptr<AnimationDelegate> delegate) argument
[all...]
H A Dbounds_animator.h70 // Sets the delegate for the animation for the specified view.
72 scoped_ptr<gfx::AnimationDelegate> delegate);
104 Data() : animation(NULL), delegate(NULL) {}
116 gfx::AnimationDelegate* delegate; member in struct:views::BoundsAnimator::Data
130 // animation or delegate.
134 // delegate has been installed on |data| AnimationCanceled is invoked on it.
H A Dscroll_animator.cc32 ScrollAnimator::ScrollAnimator(ScrollDelegate* delegate) argument
33 : delegate_(delegate),
39 DCHECK(delegate);
/external/chromium_org/ui/views/bubble/
H A Dtray_bubble_view.cc294 Delegate* delegate,
312 return new TrayBubbleView(parent_window, anchor, delegate, *init_params);
317 Delegate* delegate,
321 delegate_(delegate),
449 // we inform the delegate that we entered. This will prevent the bubble
456 // do not call the delegate, but wait for the first mouse move within the
474 // Do not notify the delegate of an exit if we never told it that we entered.
489 // delegate to disable AutoClose.
292 Create(gfx::NativeView parent_window, View* anchor, Delegate* delegate, InitParams* init_params) argument
315 TrayBubbleView(gfx::NativeView parent_window, View* anchor, Delegate* delegate, const InitParams& init_params) argument
H A Dtray_bubble_view.h15 // border rendering. This also has its own delegate for handling mouse events
77 // delegate.
117 Delegate* delegate,
141 // Called when the delegate is destroyed.
144 Delegate* delegate() { return delegate_; } function in class:views::TrayBubbleView
173 Delegate* delegate,
/external/chromium_org/ui/views/controls/button/
H A Dcustom_button.h92 // Takes ownership of the delegate.
93 void set_state_changed_delegate(CustomButtonStateChangedDelegate* delegate) { argument
94 state_changed_delegate_.reset(delegate);

Completed in 191 milliseconds

<<11121314151617181920>>