Searched refs:delegate (Results 201 - 225 of 825) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/app_modal_dialogs/
H A Dmessage_box_handler.h25 JavaScriptAppModalDialogDelegate* delegate,
/external/chromium/chrome/browser/ui/cocoa/
H A Dsidebar_controller.h31 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate;
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dbefore_translate_infobar_gtk.h15 explicit BeforeTranslateInfoBar(TranslateInfoBarDelegate* delegate);
H A Dconfirm_infobar_gtk.cc22 ConfirmInfoBarGtk::ConfirmInfoBarGtk(ConfirmInfoBarDelegate* delegate) argument
23 : InfoBar(delegate) {
37 std::string label_text = UTF16ToUTF8(delegate->GetMessageText());
47 std::string link_text = UTF16ToUTF8(delegate->GetLinkText());
H A Dconfirm_infobar_gtk.h21 explicit ConfirmInfoBarGtk(ConfirmInfoBarDelegate* delegate);
26 // Adds a button to the info bar by type. It will do nothing if the delegate
H A Dextension_infobar_gtk.cc17 ExtensionInfoBarGtk::ExtensionInfoBarGtk(ExtensionInfoBarDelegate* delegate) argument
18 : InfoBar(delegate),
20 delegate_(delegate),
34 return; // The delegate can go away while we asynchronously load images.
/external/chromium/chrome/browser/ui/gtk/
H A Dview_id_util.h15 // Use this delegate to override default view id searches.
30 static void SetDelegateForWidget(GtkWidget* widget, Delegate* delegate);
/external/chromium/net/base/
H A Dnetwork_config_watcher_mac.h40 explicit NetworkConfigWatcherMac(Delegate* delegate);
H A Ddirectory_lister.h64 DirectoryListerDelegate* delegate);
69 DirectoryListerDelegate* delegate);
76 // delegate will receive the OnListDone notification with an error code of
80 // The delegate pointer may be modified at any time.
81 DirectoryListerDelegate* delegate() const { return delegate_; } function in class:net::DirectoryLister
/external/chromium/net/url_request/
H A Dhttps_prober.cc27 HTTPSProberDelegate* delegate) {
32 inflight_probes_[host] = delegate;
85 HTTPSProberDelegate* delegate = i->second; local
89 delegate->ProbeComplete(result);
26 ProbeHost(const std::string& host, URLRequestContext* ctx, HTTPSProberDelegate* delegate) argument
/external/webkit/Source/WebKit/win/
H A DWebDownloadCurl.cpp59 void WebDownload::init(ResourceHandle* handle, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate) argument
64 void WebDownload::init(const KURL& url, IWebDownloadDelegate* delegate) argument
73 /* [in] */ IWebDownloadDelegate* delegate)
81 /* [in] */ IWebDownloadDelegate* delegate)
71 initWithRequest( IWebURLRequest* request, IWebDownloadDelegate* delegate) argument
79 initToResumeWithBundle( BSTR bundlePath, IWebDownloadDelegate* delegate) argument
/external/chromium/chrome/browser/chromeos/login/
H A Duser_image_loader.h39 explicit UserImageLoader(Delegate* delegate);
47 void set_delegate(Delegate* delegate) { delegate_ = delegate; } argument
76 // Notifies the delegate that image was loaded, on delegate's thread.
79 // The message loop object of the thread in which we notify the delegate.
/external/chromium/chrome/browser/policy/
H A Ddevice_management_backend.h97 DeviceRegisterResponseDelegate* delegate) = 0;
103 DeviceUnregisterResponseDelegate* delegate) = 0;
109 DevicePolicyResponseDelegate* delegate) = 0;
H A Dmock_device_management_service.h29 DeviceRegisterResponseDelegate* delegate);
35 DeviceUnregisterResponseDelegate* delegate);
41 DevicePolicyResponseDelegate* delegate);
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsTransformValuesUnmodifiableIteratorTest.java47 final Map<K, V> delegate; field in class:MapsTransformValuesUnmodifiableIteratorTest.UnmodifiableIteratorMap
49 UnmodifiableIteratorMap(Map<K, V> delegate) { argument
50 this.delegate = delegate;
53 @Override protected Map<K, V> delegate() { method in class:MapsTransformValuesUnmodifiableIteratorTest.UnmodifiableIteratorMap
54 return delegate;
59 @Override protected Set<K> delegate() {
60 return delegate.keySet();
63 return Iterators.unmodifiableIterator(delegate.keySet().iterator());
66 return delegate
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DLinkedHashMultimap.java171 final Set<V> delegate; field in class:LinkedHashMultimap.SetDecorator
174 SetDecorator(@Nullable K key, Set<V> delegate) { argument
175 this.delegate = delegate;
179 @Override protected Set<V> delegate() { method in class:LinkedHashMultimap.SetDecorator
180 return delegate;
198 boolean changed = delegate.add(value);
206 boolean changed = delegate.addAll(values);
208 linkedEntries.addAll(createEntries(delegate()));
214 for (V value : delegate) {
[all...]
H A DImmutableBiMap.java199 // forward map is a view, don't make a copy of the non-view delegate map
215 abstract ImmutableMap<K, V> delegate(); method in class:ImmutableBiMap
227 return delegate().containsKey(key);
235 return delegate().entrySet();
239 return delegate().get(key);
243 return delegate().keySet();
265 return delegate().isEmpty();
270 return delegate().size();
274 return object == this || delegate().equals(object);
278 return delegate()
288 @Override ImmutableMap<Object, Object> delegate() { method in class:ImmutableBiMap.EmptyBiMap
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DSortedMultisetTestSuiteBuilder.java129 final TestMultisetGenerator<E> delegate =
137 SortedMultiset<E> emptyMultiset = (SortedMultiset<E>) delegate.create();
139 SampleElements<E> samples = delegate.samples();
150 .using(new ForwardingTestMultisetGenerator<E>(delegate) {
178 (SortedMultiset<E>) delegate.create(allEntries.toArray());
224 final TestMultisetGenerator<E> delegate =
232 .using(new ForwardingTestMultisetGenerator<E>(delegate) {
252 private final TestMultisetGenerator<E> delegate; field in class:SortedMultisetTestSuiteBuilder.ForwardingTestMultisetGenerator
254 ForwardingTestMultisetGenerator(TestMultisetGenerator<E> delegate) { argument
255 this.delegate
[all...]
/external/chromium/base/
H A Dmessage_pump_mac.h12 // of the machinery necessary to dispatch events to a delegate, but does not
68 virtual void Run(Delegate* delegate);
69 virtual void DoRun(Delegate* delegate) = 0;
180 // must wait until a delegate is available to process it. This can happen
183 // work on entry and redispatch it as needed once a delegate is available.
194 virtual void DoRun(Delegate* delegate);
213 virtual void DoRun(Delegate* delegate);
232 virtual void DoRun(Delegate* delegate);
H A Dmessage_pump_glib.cc128 Delegate* delegate; member in struct:base::MessagePumpForUI::RunState
175 void MessagePumpForUI::RunWithDispatcher(Delegate* delegate, argument
187 state.delegate = delegate;
214 more_work_is_plausible |= state_->delegate->DoWork();
219 state_->delegate->DoDelayedWork(&delayed_work_time_);
226 more_work_is_plausible = state_->delegate->DoIdleWork();
284 if (state_->delegate->DoWork()) {
295 state_->delegate->DoDelayedWork(&delayed_work_time_);
317 void MessagePumpForUI::Run(Delegate* delegate) { argument
[all...]
/external/chromium/chrome/browser/
H A Dcrash_upload_list.cc26 CrashUploadList* CrashUploadList::Create(Delegate* delegate) { argument
28 return new CrashUploadListWin(delegate);
30 return new CrashUploadList(delegate);
34 CrashUploadList::CrashUploadList(Delegate* delegate) : delegate_(delegate) {} argument
/external/chromium/chrome/browser/download/
H A Ddownload_status_updater_unittest.cc91 MockDelegate delegate(&updater_);
100 delegate.set_in_progress_download_count(1);
101 delegate.set_received_bytes(21);
102 delegate.set_total_bytes(42);
111 delegate.set_is_download_progress_known(false);
/external/chromium/chrome/browser/ui/views/
H A Dkeyboard_overlay_dialog_view.cc42 HtmlDialogUIDelegate* delegate,
44 : HtmlDialogView(profile, delegate),
56 // Set the delegate. This must be done before loading the page. See
100 KeyboardOverlayDelegate* delegate = new KeyboardOverlayDelegate( local
104 delegate,
106 delegate->set_view(html_view);
40 KeyboardOverlayDialogView( Profile* profile, HtmlDialogUIDelegate* delegate, BrowserView* parent_view) argument
/external/jmdns/src/javax/jmdns/
H A DJmmDNS.java36 * This interface defines a delegate to the EOClassDescriptionRegister class to enable subclassing.
41 * Allows the delegate the opportunity to construct and return a different JmmDNS.
58 * Assigns <code>delegate</code> as JmmDNS's class delegate. The class delegate is optional.
60 * @param delegate
61 * The object to set as JmmDNS's class delegate.
65 public static void setClassDelegate(ClassDelegate delegate) { argument
66 _databaseClassDelegate.set(delegate);
70 * Returns JmmDNS's class delegate
[all...]
/external/chromium/chrome/browser/sessions/
H A Dtab_restore_service.cc221 TabRestoreServiceDelegate* delegate =
223 if (closing_delegates_.find(delegate) != closing_delegates_.end())
227 PopulateTab(local_tab.get(), index, delegate, tab);
234 void TabRestoreService::BrowserClosing(TabRestoreServiceDelegate* delegate) { argument
235 closing_delegates_.insert(delegate);
238 window->selected_tab_index = delegate->GetSelectedIndex();
242 for (int i = 0; i < delegate->GetTabCount(); ++i) {
246 for (int tab_index = 0; tab_index < delegate->GetTabCount(); ++tab_index) {
249 delegate,
250 &delegate
271 BrowserClosed(TabRestoreServiceDelegate* delegate) argument
297 RestoreMostRecentEntry( TabRestoreServiceDelegate* delegate) argument
305 RestoreEntryById(TabRestoreServiceDelegate* delegate, SessionID::id_type id, bool replace_existing_tab) argument
477 PopulateTab(Tab* tab, int index, TabRestoreServiceDelegate* delegate, NavigationController* controller) argument
888 RestoreTab( const Tab& tab, TabRestoreServiceDelegate* delegate, bool replace_existing_tab) argument
[all...]

Completed in 498 milliseconds

1234567891011>>