Searched refs:delegate (Results 276 - 300 of 825) sorted by relevance

<<11121314151617181920>>

/external/chromium/net/socket_stream/
H A Dsocket_stream_job_manager.h26 const GURL& url, SocketStream::Delegate* delegate) const;
/external/chromium/webkit/glue/
H A Dwebsocketstreamhandle_bridge.h28 WebSocketStreamHandleDelegate* delegate);
H A Dmultipart_response_delegate_unittest.cc30 MultipartResponseDelegateTester(MultipartResponseDelegate* delegate) argument
31 : delegate_(delegate) {
107 MultipartResponseDelegate delegate(&client, NULL, response, "bound");
108 MultipartResponseDelegateTester delegate_tester(&delegate);
211 MultipartResponseDelegate delegate(&client, NULL, response, "bound");
219 delegate.OnReceivedData(no_start_boundary.c_str(),
228 delegate.OnCompletedRequest();
286 MultipartResponseDelegate delegate(&client, NULL, response, "--bound");
294 delegate.OnReceivedData(data.c_str(),
302 delegate
[all...]
/external/guava/guava-testlib/src/com/google/common/testing/
H A DEquivalenceTester.java65 private final RelationshipTester<T> delegate; field in class:EquivalenceTester
70 this.delegate = new RelationshipTester<T>(new RelationshipAssertion<T>() {
101 delegate.addRelatedGroup(group);
110 delegate.test();
/external/webkit/Source/WebKit/win/
H A DWebDownload.cpp77 WebDownload* WebDownload::createInstance(ResourceHandle* handle, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate) argument
81 instance->init(handle, request, response, delegate);
85 WebDownload* WebDownload::createInstance(const KURL& url, IWebDownloadDelegate* delegate) argument
89 instance->init(url, delegate);
/external/webkit/Tools/MiniBrowser/mac/
H A DAppDelegate.m215 id delegate = [window delegate];
216 if ([delegate isKindOfClass:[BrowserWindowController class]]) {
217 BrowserWindowController *controller = (BrowserWindowController *)delegate;
230 id delegate = [window delegate];
231 if ([delegate isKindOfClass:[BrowserWindowController class]])
232 return (BrowserWindowController *)delegate;
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_install_dialog_gtk.cc43 ExtensionInstallUI::Delegate* delegate) {
45 delegate->InstallUIProceed();
47 delegate->InstallUIAbort();
56 ExtensionInstallUI::Delegate *delegate,
162 g_signal_connect(dialog, "response", G_CALLBACK(OnResponse), delegate);
174 ExtensionInstallUI::Delegate* delegate,
181 delegate->InstallUIAbort();
188 delegate->InstallUIAbort();
193 browser_window->window(), icon, extension, delegate, permissions, type);
42 OnResponse(GtkWidget* dialog, int response_id, ExtensionInstallUI::Delegate* delegate) argument
53 ShowInstallDialog(GtkWindow* parent, SkBitmap* skia_icon, const Extension* extension, ExtensionInstallUI::Delegate *delegate, const std::vector<string16>& permissions, ExtensionInstallUI::PromptType type) argument
172 ShowExtensionInstallDialog( Profile* profile, ExtensionInstallUI::Delegate* delegate, const Extension* extension, SkBitmap* icon, const std::vector<string16>& permissions, ExtensionInstallUI::PromptType type) argument
/external/chromium/net/websockets/
H A Dwebsocket_throttle_unittest.cc80 DummySocketStreamDelegate delegate; local
86 scoped_refptr<WebSocketJob> w1(new WebSocketJob(&delegate));
106 scoped_refptr<WebSocketJob> w2(new WebSocketJob(&delegate));
125 scoped_refptr<WebSocketJob> w3(new WebSocketJob(&delegate));
144 scoped_refptr<WebSocketJob> w4(new WebSocketJob(&delegate));
162 scoped_refptr<WebSocketJob> w5(new WebSocketJob(&delegate));
180 scoped_refptr<WebSocketJob> w6(new WebSocketJob(&delegate));
284 DummySocketStreamDelegate delegate; local
289 scoped_refptr<WebSocketJob> w1(new WebSocketJob(&delegate));
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMultimap.java102 * not present). When the collection delegate in the WrappedCollection is
105 * an entry for the provided key, and if so replaces the delegate.
385 * have a delegate pointing to the underlying collection class.
388 * multimap values for a given key. Its delegate is a value in {@link
389 * AbstractMultimap#map} whenever the delegate is non-empty. The {@code
401 Collection<V> delegate; field in class:AbstractMultimap.WrappedCollection
405 WrappedCollection(@Nullable K key, Collection<V> delegate, argument
408 this.delegate = delegate;
415 * If the delegate collectio
647 WrappedSet(@ullable K key, Set<V> delegate) argument
657 WrappedSortedSet(@ullable K key, SortedSet<V> delegate, @Nullable WrappedCollection ancestor) argument
710 WrappedList(@ullable K key, List<V> delegate, @Nullable WrappedCollection ancestor) argument
856 RandomAccessWrappedList(@ullable K key, List<V> delegate, @Nullable WrappedCollection ancestor) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractScheduledService.java154 private final AbstractService delegate = new AbstractService() { field in class:AbstractScheduledService
192 runningTask = scheduler().schedule(delegate, executorService, task);
271 return delegate.start();
275 return delegate.startAndWait();
279 return delegate.isRunning();
283 return delegate.state();
287 return delegate.stop();
291 return delegate.stopAndWait();
387 protected Future<Void> delegate() { method in class:AbstractScheduledService.CustomScheduler.ReschedulableCallable
/external/chromium/base/
H A Dmessage_pump_win.cc41 Delegate* delegate, Dispatcher* dispatcher) {
43 s.delegate = delegate;
203 more_work_is_plausible |= state_->delegate->DoWork();
208 state_->delegate->DoDelayedWork(&delayed_work_time_);
221 more_work_is_plausible = state_->delegate->DoIdleWork();
296 // Now give the delegate a chance to do some work. He'll let us know if he
298 if (state_->delegate->DoWork())
311 state_->delegate->DoDelayedWork(&delayed_work_time_);
454 bool more_work_is_plausible = state_->delegate
40 RunWithDispatcher( Delegate* delegate, Dispatcher* dispatcher) argument
[all...]
H A Dmessage_pump_glib.h58 virtual void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher);
87 virtual void Run(Delegate* delegate);
/external/chromium/base/synchronization/
H A Dwaitable_event_watcher.h89 // When @event is signaled, the given delegate is called on the thread of the
90 // current message loop when StartWatching is called. The delegate is not
93 bool StartWatching(WaitableEvent* event, Delegate* delegate);
100 // The delegate will *not* be called for the current watch after this
101 // function returns. Since the delegate runs on the same thread as this
113 // Return the delegate, or NULL if there is no delegate.
115 Delegate* delegate() { function in class:base::WaitableEventWatcher
/external/chromium/chrome/browser/chromeos/
H A Dchoose_mobile_network_dialog.cc25 HtmlDialogUIDelegate* delegate)
26 : HtmlDialogView(profile, delegate) {}
24 HtmlDialogWithoutContextMenuView(Profile* profile, HtmlDialogUIDelegate* delegate) argument
/external/chromium/chrome/browser/chromeos/login/
H A Dcamera_controller.cc26 CameraController::CameraController(Delegate* delegate) argument
32 delegate_(delegate) {
H A Dimage_downloader.cc26 ImageDownloader::ImageDownloader(ImageDecoder::Delegate* delegate, argument
29 : delegate_(delegate) {
H A Dviews_login_display_host.cc28 LoginDisplay::Delegate* delegate) const {
30 return new ViewsLoginDisplay(delegate, background_bounds());
/external/chromium/chrome/browser/chromeos/offline/
H A Doffline_load_page.h27 // A delegate class that is called when the interstitinal page
41 const GURL& url, Delegate* delegate);
48 Delegate* delegate);
/external/chromium/chrome/browser/
H A Dcrash_upload_list.h36 // of the crash upload list with the given callback delegate.
37 static CrashUploadList* Create(Delegate* delegate);
39 // Creates a new crash upload list with the given callback delegate.
40 explicit CrashUploadList(Delegate* delegate);
46 // Clears the delegate, so that any outstanding asynchronous load will not
47 // call the delegate on completion.
71 // Calls the delegate's callback method, if there is a delegate.
/external/chromium/chrome/browser/extensions/
H A Dcrx_installer_browsertest.cc26 void ConfirmInstall(Delegate* delegate, const Extension* extension) { argument
28 delegate->InstallUIProceed();
H A Dextension_infobar_delegate.cc42 bool ExtensionInfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
44 delegate->AsExtensionInfoBarDelegate();
48 // if it is our extension that crashes, the extension delegate is NULL so
H A Dextension_install_ui.cc120 void ExtensionInstallUI::ConfirmInstall(Delegate* delegate, argument
124 delegate_ = delegate;
130 delegate->InstallUIProceed();
137 void ExtensionInstallUI::ConfirmReEnable(Delegate* delegate, argument
141 delegate_ = delegate;
239 InfoBarDelegate* delegate = tab_contents->GetInfoBarDelegateAt(i); local
241 delegate->AsThemePreviewInfobarDelegate();
248 old_delegate = delegate;
H A Dextension_install_ui.h58 // We *MUST* eventually call either Proceed() or Abort() on |delegate|.
59 virtual void ConfirmInstall(Delegate* delegate, const Extension* extension);
64 // We *MUST* eventually call either Proceed() or Abort() on |delegate|.
65 virtual void ConfirmReEnable(Delegate* delegate, const Extension* extension);
97 // Returns the delegate to control the browser's info bar. This is
118 // The delegate we will call Proceed/Abort on after confirmation UI.
H A Dextension_uninstall_dialog.cc31 void ExtensionUninstallDialog::ConfirmUninstall(Delegate* delegate, argument
34 delegate_ = delegate;
/external/chromium/chrome/browser/policy/
H A Dasynchronous_policy_loader.h24 AsynchronousPolicyProvider::Delegate* delegate,
54 AsynchronousPolicyProvider::Delegate* delegate() { function in class:policy::AsynchronousPolicyLoader

Completed in 696 milliseconds

<<11121314151617181920>>