Searched defs:delegate (Results 226 - 250 of 1356) sorted by last modified time

1234567891011>>

/external/chromium_org/ui/aura/test/
H A Dtest_window_delegate.cc36 TestWindowDelegate* delegate = new TestWindowDelegate; local
37 delegate->delete_on_destroyed_ = true;
38 return delegate;
H A Dtest_windows.cc32 Window* CreateTestWindowWithDelegate(WindowDelegate* delegate, argument
37 delegate, ui::wm::WINDOW_TYPE_NORMAL, id, bounds, parent);
40 Window* CreateTestWindowWithDelegateAndType(WindowDelegate* delegate, argument
45 Window* window = new Window(delegate);
/external/chromium_org/ui/aura/
H A Dwindow.cc200 Window::Window(WindowDelegate* delegate) argument
204 delegate_(delegate),
226 // Let the delegate know we're in the processing of destroying.
253 // WindowDestroyed callbacks of delegate and the observers.
694 if (window->delegate())
912 // If we are currently not the layer's delegate, we will not get bounds
915 if (!layer() || layer()->delegate() != this)
H A Dwindow.h75 explicit Window(WindowDelegate* delegate);
107 WindowDelegate* delegate() { return delegate_; } function in class:aura::Window
108 const WindowDelegate* delegate() const { return delegate_; } function in class:aura::Window
254 // Returns the topmost Window with a delegate containing |local_point|.
258 // that has a delegate set). The toplevel window may be |this|.
361 // Asks the delegate to paint the window and invokes PaintLayerlessChildren()
H A Dwindow_event_dispatcher_unittest.cc40 // A delegate that always returns a non-client component for hit tests.
340 // Prevent w3 from being deleted by the hierarchy since its delegate is owned
419 test::TestWindowDelegate delegate; local
420 scoped_ptr<Window> w1(CreateNormalWindow(1, root_window(), &delegate));
650 test::TestWindowDelegate delegate; local
652 &delegate, 1, gfx::Rect(0, 0, 100, 100), root_window()));
743 test::TestWindowDelegate delegate; local
745 &delegate, 1, gfx::Rect(50, 50, 100, 100), root_window()));
798 test::TestWindowDelegate delegate; local
800 &delegate,
844 test::TestWindowDelegate delegate; local
912 test::TestWindowDelegate delegate; local
944 test::TestWindowDelegate delegate; local
981 test::TestWindowDelegate delegate; local
1037 test::TestWindowDelegate delegate; local
1074 test::TestWindowDelegate delegate; local
1248 DetachesParentOnTapDelegate delegate; local
1321 test::TestWindowDelegate delegate; local
1412 test::TestWindowDelegate delegate; local
1680 test::TestWindowDelegate delegate; local
1705 test::TestWindowDelegate delegate; local
1946 test::TestWindowDelegate delegate; local
1984 test::TestWindowDelegate delegate; local
2050 SelfDestructDelegate delegate; local
2084 test::TestWindowDelegate delegate; local
2162 test::TestWindowDelegate delegate; local
2212 test::EventCountDelegate delegate; local
2262 test::EventCountDelegate delegate; local
[all...]
H A Dwindow_targeter_unittest.cc56 test::TestWindowDelegate delegate; local
57 scoped_ptr<Window> window(CreateNormalWindow(1, root_window(), &delegate));
58 Window* one = CreateNormalWindow(2, window.get(), &delegate);
59 Window* two = CreateNormalWindow(3, window.get(), &delegate);
86 test::TestWindowDelegate delegate; local
87 scoped_ptr<Window> window(CreateNormalWindow(1, root_window(), &delegate));
88 Window* child = CreateNormalWindow(2, window.get(), &delegate);
124 test::TestWindowDelegate delegate; local
125 scoped_ptr<Window> window(CreateNormalWindow(1, root_window(), &delegate));
139 test::TestWindowDelegate delegate; local
[all...]
H A Dwindow_unittest.cc239 // The delegate deletes itself when the window is being destroyed.
559 TestWindowDelegate delegate; local
563 CreateTestWindowWithDelegate(&delegate, 11, kBounds, w1.get()));
566 CreateTestWindowWithDelegate(&delegate, 1111, kBounds, w111.get()));
762 CaptureWindowDelegateImpl delegate; local
764 &delegate, 0, gfx::Rect(0, 0, 20, 20), root_window()));
767 delegate.ResetCounts();
772 EXPECT_EQ(0, delegate.capture_lost_count());
773 EXPECT_EQ(0, delegate.capture_changed_event_count());
776 EXPECT_EQ(1, delegate
868 CaptureWindowDelegateImpl delegate; local
1012 CaptureWindowDelegateImpl delegate; local
1051 CaptureWindowDelegateImpl delegate; local
1202 MouseEnterExitWindowDelegate delegate; local
2351 OwningWindowDelegate delegate; local
2393 BoundsChangeDelegate delegate; local
2428 BoundsChangeDelegate delegate; local
3108 CreateWindowFromDescription(const std::string& description, WindowDelegate* delegate) argument
3147 AddWindowsFromString(aura::Window* parent, const std::string& description, std::string::size_type start_pos, WindowDelegate* delegate) argument
3353 test::TestWindowDelegate delegate; local
[all...]
/external/chromium_org/ui/base/ime/
H A Ddummy_input_method.cc15 void DummyInputMethod::SetDelegate(internal::InputMethodDelegate* delegate) { argument
H A Dinput_method_auralinux.cc15 internal::InputMethodDelegate* delegate)
17 SetDelegate(delegate);
14 InputMethodAuraLinux( internal::InputMethodDelegate* delegate) argument
H A Dinput_method_base.cc31 void InputMethodBase::SetDelegate(internal::InputMethodDelegate* delegate) { argument
32 delegate_ = delegate;
H A Dinput_method_chromeos.cc37 internal::InputMethodDelegate* delegate)
42 SetDelegate(delegate);
36 InputMethodChromeOS( internal::InputMethodDelegate* delegate) argument
H A Dinput_method_chromeos_unittest.cc70 explicit TestableInputMethodChromeOS(internal::InputMethodDelegate* delegate) argument
71 : InputMethodChromeOS(delegate),
H A Dinput_method_factory.cc34 internal::InputMethodDelegate* delegate,
40 return scoped_ptr<InputMethod>(new MockInputMethod(delegate));
43 return scoped_ptr<InputMethod>(new InputMethodChromeOS(delegate));
46 return CreateRemoteInputMethodWin(delegate);
47 return scoped_ptr<InputMethod>(new InputMethodWin(delegate, widget));
49 return scoped_ptr<InputMethod>(new InputMethodMac(delegate));
51 return scoped_ptr<InputMethod>(new InputMethodAuraLinux(delegate));
53 return scoped_ptr<InputMethod>(new InputMethodMinimal(delegate));
33 CreateInputMethod( internal::InputMethodDelegate* delegate, gfx::AcceleratedWidget widget) argument
H A Dinput_method_minimal.cc14 internal::InputMethodDelegate* delegate) {
15 SetDelegate(delegate);
13 InputMethodMinimal( internal::InputMethodDelegate* delegate) argument
H A Dinput_method_win.cc26 InputMethodWin::InputMethodWin(internal::InputMethodDelegate* delegate, argument
35 SetDelegate(delegate);
H A Dmock_input_method.cc12 MockInputMethod::MockInputMethod(internal::InputMethodDelegate* delegate) argument
19 void MockInputMethod::SetDelegate(internal::InputMethodDelegate* delegate) { argument
H A Dremote_input_method_win.cc112 explicit RemoteInputMethodWin(internal::InputMethodDelegate* delegate) argument
113 : delegate_(delegate),
131 virtual void SetDelegate(internal::InputMethodDelegate* delegate) OVERRIDE {
132 delegate_ = delegate;
291 internal::RemoteInputMethodDelegateWin* delegate) OVERRIDE{
292 remote_delegate_ = delegate;
380 internal::InputMethodDelegate* delegate) {
381 return scoped_ptr<InputMethod>(new RemoteInputMethodWin(delegate));
379 CreateRemoteInputMethodWin( internal::InputMethodDelegate* delegate) argument
/external/chromium_org/ui/base/models/
H A Dbutton_menu_item_model.cc40 ButtonMenuItemModel::Delegate* delegate)
42 delegate_(delegate) {
38 ButtonMenuItemModel( int string_id, ButtonMenuItemModel::Delegate* delegate) argument
H A Dsimple_menu_model.cc78 SimpleMenuModel::SimpleMenuModel(Delegate* delegate) argument
79 : delegate_(delegate),
403 // called after this. It's more convenient for the delegate to be called
H A Dsimple_menu_model.h54 // Notifies the delegate that the item with the specified command id was
63 // Notifies the delegate that the menu is about to show.
66 // Notifies the delegate that the menu has closed.
72 explicit SimpleMenuModel(Delegate* delegate);
172 void set_delegate(Delegate* delegate) { delegate_ = delegate; } argument
173 Delegate* delegate() { return delegate_; } function in class:ui::SimpleMenuModel
192 // Notify the delegate that the menu is closed.
/external/chromium_org/ui/base/resource/
H A Dresource_bundle.cc168 Delegate* delegate,
170 InitSharedInstance(delegate);
580 ResourceBundle::ResourceBundle(Delegate* delegate) argument
581 : delegate_(delegate),
593 void ResourceBundle::InitSharedInstance(Delegate* delegate) { argument
595 g_shared_instance_ = new ResourceBundle(delegate);
166 InitSharedInstanceWithLocale( const std::string& pref_locale, Delegate* delegate, LoadResources load_resources) argument
H A Dresource_bundle_unittest.cc160 // Returns new ResoureBundle with the specified |delegate|. The
163 ResourceBundle* CreateResourceBundle(ResourceBundle::Delegate* delegate) { argument
166 resource_bundle_ = new ResourceBundle(delegate);
178 MockResourceBundleDelegate delegate; local
179 ResourceBundle* resource_bundle = CreateResourceBundle(&delegate);
184 EXPECT_CALL(delegate,
201 MockResourceBundleDelegate delegate; local
202 ResourceBundle* resource_bundle = CreateResourceBundle(&delegate);
207 EXPECT_CALL(delegate, GetPathForLocalePack(_, locale))
216 EXPECT_CALL(delegate, GetPathForLocalePac
225 MockResourceBundleDelegate delegate; local
240 MockResourceBundleDelegate delegate; local
260 MockResourceBundleDelegate delegate; local
280 MockResourceBundleDelegate delegate; local
300 MockResourceBundleDelegate delegate; local
330 MockResourceBundleDelegate delegate; local
352 MockResourceBundleDelegate delegate; local
[all...]
/external/chromium_org/ui/base/x/
H A Dx11_util.cc1068 bool EnumerateChildren(EnumerateWindowsDelegate* delegate, XID window, argument
1079 if (delegate->ShouldStopIterating(*iter))
1100 if (IsWindowNamed(*iter) && delegate->ShouldStopIterating(*iter))
1110 if (EnumerateChildren(delegate, *iter, max_depth, depth))
1118 bool EnumerateAllWindows(EnumerateWindowsDelegate* delegate, int max_depth) { argument
1120 return EnumerateChildren(delegate, root, max_depth, 0);
1123 void EnumerateTopLevelWindows(ui::EnumerateWindowsDelegate* delegate) { argument
1131 ui::EnumerateAllWindows(delegate, kMaxSearchDepth);
1138 if (delegate->ShouldStopIterating(*iter))
/external/chromium_org/ui/chromeos/network/
H A Dnetwork_list.cc31 NetworkListView::NetworkListView(NetworkListDelegate* delegate) argument
32 : delegate_(delegate),
37 CHECK(delegate);
/external/chromium_org/ui/chromeos/
H A Dtouch_exploration_controller.cc39 TouchExplorationControllerDelegate* delegate)
41 delegate_(delegate),
1109 // TODO(evy, lisayin) : Just call abstracted methods on the delegate (e.g.
1111 // methods to the delegate. Avoid the middle step of dispatching keys at all,
37 TouchExplorationController( aura::Window* root_window, TouchExplorationControllerDelegate* delegate) argument

Completed in 4305 milliseconds

1234567891011>>