Searched defs:delegate (Results 76 - 100 of 1356) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/views/frame/
H A Dweb_contents_close_handler.cc10 WebContentsCloseHandlerDelegate* delegate)
11 : delegate_(delegate),
9 WebContentsCloseHandler( WebContentsCloseHandlerDelegate* delegate) argument
/external/chromium_org/chrome/browser/ui/views/
H A Dload_complete_listener.cc11 LoadCompleteListener::LoadCompleteListener(Delegate* delegate) argument
12 : delegate_(delegate) {
13 DCHECK(delegate);
/external/chromium_org/chrome/browser/web_resource/
H A Djson_asynchronous_unpacker.h12 // A delegate interface for users of JSONAsynchronousUnpacker.
26 // asynchronously. Results are sent back to the delegate via one of its
31 // delegate must be kept around until one of the delegate methods is called.
32 // In case the delegate is no longer valid, ClearDelegate() must be called.
34 Create(JSONAsynchronousUnpackerDelegate* delegate);
39 // calling the delegate method.
42 // If the delegate is going away it needs to inform the unpacker about it.
48 explicit JSONAsynchronousUnpacker(JSONAsynchronousUnpackerDelegate* delegate) argument
49 : delegate_(delegate) {
[all...]
/external/chromium_org/chrome/test/gpu/
H A Dwebgl_infobar_browsertest.cc135 infobars::InfoBarDelegate* delegate = local
136 infobar_service->infobar_at(0)->delegate();
137 ASSERT_EQ(IDR_INFOBAR_3D_BLOCKED, delegate->GetIconID());
138 delegate->AsConfirmInfoBarDelegate()->Cancel();
/external/chromium_org/components/infobars/test/
H A Dinfobar_test.cc30 scoped_ptr<ConfirmInfoBarDelegate> delegate) {
32 delegate.PassAs<infobars::InfoBarDelegate>()));
29 CreateInfoBar( scoped_ptr<ConfirmInfoBarDelegate> delegate) argument
/external/chromium_org/components/policy/core/common/
H A Dproxy_policy_provider.cc19 void ProxyPolicyProvider::SetDelegate(ConfigurationPolicyProvider* delegate) { argument
22 delegate_ = delegate;
32 // Note: the delegate is not owned by the proxy provider, so this call is not
34 // Just drop the delegate without propagating updates here.
/external/chromium_org/content/public/app/
H A Dcontent_main.h26 explicit ContentMainParams(ContentMainDelegate* delegate) argument
27 : delegate(delegate),
38 ContentMainDelegate* delegate; member in struct:content::ContentMainParams
58 // provides a way to set the |delegate| as ContentMainDelegate for
61 // The ownership of |delegate| is transferred.
62 CONTENT_EXPORT void SetContentMainDelegate(ContentMainDelegate* delegate);
67 // in NULL for |delegate| if they don't want to override default startup.
/external/chromium_org/content/shell/renderer/test_runner/
H A Dnotification_presenter.h31 void set_delegate(WebTestDelegate* delegate) { delegate_ = delegate; } argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_adapter_unittest.cc128 // Verify that when there is no registered pairing delegate, NULL is returned.
135 // Verify that when there is one registered pairing delegate, it is returned.
136 TestPairingDelegate delegate; local
138 adapter->AddPairingDelegate(&delegate,
141 EXPECT_EQ(&delegate, adapter->DefaultPairingDelegate());
182 // Verify that after unregistering a delegate, NULL is returned.
183 TestPairingDelegate delegate; local
185 adapter->AddPairingDelegate(&delegate,
187 adapter->RemovePairingDelegate(&delegate);
H A Dbluetooth_gatt_service.cc21 Delegate* delegate) {
18 Create( const BluetoothUUID& uuid, bool is_primary, Delegate* delegate) argument
/external/chromium_org/mojo/apps/js/test/
H A Drun_apps_js_tests.cc44 TestRunnerDelegate delegate; local
45 gin::RunTestFromFile(path, &delegate, run_until_idle);
/external/chromium_org/mojo/public/cpp/application/lib/
H A Dapplication_runner.cc19 ApplicationRunner::ApplicationRunner(ApplicationDelegate* delegate) argument
20 : delegate_(delegate) {}
/external/chromium_org/mojo/public/js/bindings/tests/
H A Drun_js_tests.cc42 TestRunnerDelegate delegate; local
43 gin::RunTestFromFile(path, &delegate, run_until_idle);
/external/chromium_org/mojo/services/native_viewport/
H A Dplatform_viewport_ozone.cc23 explicit PlatformViewportOzone(Delegate* delegate) : delegate_(delegate) { argument
90 scoped_ptr<PlatformViewport> PlatformViewport::Create(Delegate* delegate) { argument
92 new PlatformViewportOzone(delegate)).Pass();
H A Dplatform_viewport_win.cc17 explicit PlatformViewportWin(Delegate* delegate) argument
18 : delegate_(delegate) {
100 scoped_ptr<PlatformViewport> PlatformViewport::Create(Delegate* delegate) { argument
101 return scoped_ptr<PlatformViewport>(new PlatformViewportWin(delegate)).Pass();
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
H A Dview_manager_client_factory.cc14 ViewManagerDelegate* delegate)
15 : shell_(shell), delegate_(delegate) {
12 ViewManagerClientFactory( Shell* shell, ViewManagerDelegate* delegate) argument
/external/chromium_org/mojo/views/
H A Dinput_method_mojo_linux.cc13 ui::internal::InputMethodDelegate* delegate)
14 : ui::InputMethodAuraLinux(delegate) {
12 InputMethodMojoLinux( ui::internal::InputMethodDelegate* delegate) argument
/external/chromium_org/net/url_request/
H A Durl_range_request_job.cc14 NetworkDelegate* delegate)
15 : URLRequestJob(request, delegate), range_parse_result_(OK) {
13 URLRangeRequestJob(URLRequest* request, NetworkDelegate* delegate) argument
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCPeerConnection.h48 @property(nonatomic, weak) id<RTCPeerConnectionDelegate> delegate; variable
81 - (void)createOfferWithDelegate:(id<RTCSessionDescriptionDelegate>)delegate
86 - (void)createAnswerWithDelegate:(id<RTCSessionDescriptionDelegate>)delegate
92 setLocalDescriptionWithDelegate:(id<RTCSessionDescriptionDelegate>)delegate
98 setRemoteDescriptionWithDelegate:(id<RTCSessionDescriptionDelegate>)delegate
115 - (BOOL)getStatsWithDelegate:(id<RTCStatsDelegate>)delegate
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dplatform_thread.cc24 PlatformThread::Delegate* delegate = local
26 delegate->ThreadMain();
31 bool PlatformThread::Create(Delegate* delegate, argument
34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL);
58 PlatformThread::Delegate* delegate =
60 delegate->ThreadMain();
65 bool PlatformThread::Create(Delegate* delegate,
72 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);
/external/chromium_org/ui/app_list/cocoa/
H A Dapps_search_box_controller.h49 @property(assign, nonatomic) id<AppsSearchBoxDelegate> delegate; variable
/external/chromium_org/ui/app_list/views/
H A Dapp_list_menu_views.cc20 AppListMenuViews::AppListMenuViews(AppListViewDelegate* delegate) argument
21 : AppListMenu(delegate) {
/external/chromium_org/ui/compositor/
H A Dlayer_owner.h41 void set_layer_owner_delegate(LayerOwnerDelegate* delegate) { argument
42 layer_owner_delegate_ = delegate;
/external/chromium_org/ui/views/linux_ui/
H A Dstatus_icon_linux.h24 // callbacks to a delegate. For the same reason, do not use StatusIconMenuModel.
52 Delegate* delegate() { return delegate_; } function in class:views::StatusIconLinux
53 void set_delegate(Delegate* delegate) { delegate_ = delegate; } argument
/external/chromium_org/ui/views/test/
H A Dtest_views_delegate_aura.cc33 internal::NativeWidgetDelegate* delegate) {
41 params->native_widget = new DesktopNativeWidgetAura(delegate);
31 OnBeforeWidgetInit( Widget::InitParams* params, internal::NativeWidgetDelegate* delegate) argument

Completed in 4178 milliseconds

1234567891011>>