Searched defs:Delegate (Results 226 - 250 of 294) sorted by relevance

1234567891011>>

/external/chromium_org/net/dns/
H A Dmdns_client_impl.h42 class Delegate { class in class:net::MDnsConnection
47 virtual ~Delegate() {}
50 explicit MDnsConnection(MDnsConnection::Delegate* delegate);
96 Delegate* delegate_;
111 class Core : public base::SupportsWeakPtr<Core>, MDnsConnection::Delegate {
179 MDnsListener::Delegate* delegate) OVERRIDE;
204 MDnsListener::Delegate* delegate,
219 MDnsListener::Delegate* delegate() { return delegate_; }
235 MDnsListener::Delegate* delegate_;
248 public MDnsListener::Delegate {
[all...]
/external/chromium_org/net/tools/quic/test_tools/
H A Dpacket_dropping_test_writer.h30 class Delegate { class in class:net::tools::test::PacketDroppingTestWriter
32 virtual ~Delegate() {}
45 void Initialize(QuicEpollConnectionHelper* helper, Delegate* on_can_write);
138 scoped_ptr<Delegate> on_can_write_;
/external/chromium_org/ppapi/tests/
H A Dtest_utils.h98 class Delegate { class in class:TestCompletionCallback
100 virtual ~Delegate() {}
109 // Sets a Delegate instance. OnCallback() of this instance will be invoked
112 void SetDelegate(Delegate* delegate) { delegate_ = delegate; }
186 Delegate* delegate_;
218 // Delegate functions to TestCompletionCallback
219 void SetDelegate(TestCompletionCallback::Delegate* delegate) {
/external/chromium_org/ui/base/resource/
H A Dresource_bundle.h72 // Delegate class that allows interception of pack file loading and resource
74 class Delegate { class in class:ui::ResourceBundle
120 virtual ~Delegate() {}
131 // files are loaded (e.g. add a new method in Delegate).
135 Delegate* delegate,
297 explicit ResourceBundle(Delegate* delegate);
301 static void InitSharedInstance(Delegate* delegate);
336 // Returns a FontList or NULL by calling Delegate::GetFont and converting
384 Delegate* delegate_;
/external/chromium_org/ui/views/bubble/
H A Dtray_bubble_view.h54 class VIEWS_EXPORT Delegate { class in class:views::TrayBubbleView
59 Delegate() {} function in class:views::TrayBubbleView::Delegate
60 virtual ~Delegate() {}
88 DISALLOW_COPY_AND_ASSIGN(Delegate);
117 Delegate* delegate,
144 Delegate* delegate() { return delegate_; }
173 Delegate* delegate,
186 Delegate* delegate_;
/external/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h36 class LiveRangeEdit : private MachineRegisterInfo::Delegate {
39 class Delegate { class in class:llvm::LiveRangeEdit
56 virtual ~Delegate() {}
66 Delegate *const TheDelegate;
119 Delegate *delegate = nullptr)
/external/chromium_org/chrome/browser/chromeos/
H A Dsession_length_limiter.cc35 class SessionLengthLimiterDelegateImpl : public SessionLengthLimiter::Delegate {
63 SessionLengthLimiter::Delegate::~Delegate() {
75 SessionLengthLimiter::SessionLengthLimiter(Delegate* delegate,
208 timer_.reset(new base::OneShotTimer<SessionLengthLimiter::Delegate>);
210 &SessionLengthLimiter::Delegate::StopSession);
/external/chromium_org/chrome/browser/custom_handlers/
H A Dprotocol_handler_registry.h76 // |Delegate| provides an interface for interacting asynchronously
79 class Delegate { class in class:ProtocolHandlerRegistry
81 virtual ~Delegate();
140 ProtocolHandlerRegistry(content::BrowserContext* context, Delegate* delegate);
363 // The Delegate that registers / deregisters external handlers on our behalf.
364 scoped_ptr<Delegate> delegate_;
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivetv3_session.cc30 class PrivetV3Session::FetcherDelegate : public PrivetURLFetcher::Delegate {
36 // PrivetURLFetcher::Delegate methods.
82 PrivetV3Session::Delegate::~Delegate() {
92 Delegate* delegate)
/external/chromium_org/chrome/browser/ui/
H A Dauto_login_infobar_delegate.cc143 typedef AutoLoginInfoBarDelegateAndroid Delegate; typedef
145 typedef AutoLoginInfoBarDelegate Delegate; typedef
148 scoped_ptr<ConfirmInfoBarDelegate>(new Delegate(params, profile))));
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcron_servlet.py33 self._delegate = delegate_for_test or CronServlet.Delegate()
35 class Delegate(object): class in class:CronServlet
H A Drefresh_servlet.py34 self._delegate = delegate_for_test or RefreshServlet.Delegate()
36 class Delegate(object): class in class:RefreshServlet
/external/chromium_org/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/
H A DCastWindowManager.java33 * Delegate to deliver events from the native window.
35 public interface Delegate { interface in class:CastWindowManager
39 private Delegate mDelegate;
50 * @param delegate Delegate to handle events.
52 public void setDelegate(Delegate delegate) {
/external/chromium_org/components/infobars/core/
H A Dinfobar_container.cc17 InfoBarContainer::Delegate::~Delegate() {
20 InfoBarContainer::InfoBarContainer(Delegate* delegate)
/external/chromium_org/jingle/notifier/base/
H A Dxmpp_connection.cc22 XmppConnection::Delegate::~Delegate() {}
52 Delegate* delegate,
119 Delegate* delegate = delegate_;
/external/chromium_org/jingle/notifier/communicator/
H A Dlogin.cc27 Login::Delegate::~Delegate() {}
29 Login::Login(Delegate* delegate,
/external/chromium_org/mojo/application_manager/
H A Dapplication_manager.h23 class MOJO_APPLICATION_MANAGER_EXPORT Delegate { class in class:mojo::ApplicationManager
25 virtual ~Delegate();
64 void SetDelegate(Delegate* delegate) { delegate_ = delegate; }
83 void set_delegate(Delegate* delegate) { delegate_ = delegate; }
142 Delegate* delegate_;
/external/chromium_org/remoting/base/
H A Dplugin_thread_task_runner.cc19 PluginThreadTaskRunner::Delegate::~Delegate() {
22 PluginThreadTaskRunner::PluginThreadTaskRunner(Delegate* delegate)
/external/chromium_org/remoting/host/
H A Ddesktop_session_agent.h54 class Delegate { class in class:remoting::DesktopSessionAgent
56 virtual ~Delegate();
98 bool Start(const base::WeakPtr<Delegate>& delegate,
182 base::WeakPtr<Delegate> delegate_;
/external/chromium_org/remoting/host/win/
H A Dworker_process_launcher.cc51 WorkerProcessLauncher::Delegate::~Delegate() {
55 scoped_ptr<WorkerProcessLauncher::Delegate> launcher_delegate,
/external/jmdns/src/javax/jmdns/
H A DJmDNS.java25 public static interface Delegate { interface in class:JmDNS
422 public abstract Delegate getDelegate();
431 public abstract Delegate setDelegate(Delegate value);
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dlocation_bar_view.h94 class Delegate { class in class:LocationBarView
124 virtual ~Delegate() {}
138 Delegate* delegate,
156 Delegate* delegate() const { return delegate_; }
421 Delegate* delegate_;
/external/chromium_org/content/browser/appcache/
H A Dappcache_storage.h41 class CONTENT_EXPORT Delegate { class in class:content::AppCacheStorage
79 virtual ~Delegate() {}
88 virtual void GetAllInfo(Delegate* delegate) = 0;
95 virtual void LoadCache(int64 id, Delegate* delegate) = 0;
103 const GURL& manifest_url, Delegate* delegate) = 0;
112 Delegate* delegate);
124 AppCacheGroup* group, AppCache* newest_cache, Delegate* delegate) = 0;
131 Delegate* delegate) = 0;
150 Delegate* delegate,
157 void CancelDelegateCallbacks(Delegate* delegat
[all...]
/external/chromium_org/device/test/
H A Dusb_test_gadget_impl.cc93 class Delegate : public net::URLFetcherDelegate { class in class:device::__anon8039::UsbTestGadgetImpl
95 Delegate() {} function in class:device::__anon8039::UsbTestGadgetImpl::Delegate
96 virtual ~Delegate() {}
109 DISALLOW_COPY_AND_ASSIGN(Delegate);
189 Delegate delegate;
248 Delegate delegate;
277 Delegate delegate;
/external/chromium_org/net/proxy/
H A Dproxy_config_service_android.cc197 class ProxyConfigServiceAndroid::Delegate class in class:net::ProxyConfigServiceAndroid
198 : public base::RefCountedThreadSafe<Delegate> {
200 Delegate(const scoped_refptr<base::SequencedTaskRunner>& network_task_runner, function in class:net::ProxyConfigServiceAndroid::Delegate
231 base::Bind(&Delegate::SetNewConfigOnNetworkThread, this, proxy_config));
240 base::Bind(&Delegate::ShutdownOnJNIThread, this));
271 &Delegate::SetNewConfigOnNetworkThread, this, proxy_config));
290 &Delegate::SetNewConfigOnNetworkThread, this, proxy_config));
298 friend class base::RefCountedThreadSafe<Delegate>;
302 explicit JNIDelegateImpl(Delegate* delegate) : delegate_(delegate) {}
326 Delegate* cons
[all...]

Completed in 959 milliseconds

1234567891011>>