Searched defs:Delegate (Results 251 - 275 of 294) sorted by relevance

<<1112

/external/chromium_org/net/spdy/
H A Dspdy_stream.h74 // Delegate handles protocol specific behavior of spdy stream.
75 class NET_EXPORT_PRIVATE Delegate { class in class:net::SpdyStream
77 Delegate() {} function in class:net::SpdyStream::Delegate
154 virtual ~Delegate() {}
157 DISALLOW_COPY_AND_ASSIGN(Delegate);
174 void SetDelegate(Delegate* delegate);
512 SpdyStream::Delegate* delegate_;
/external/chromium_org/net/websockets/
H A Dwebsocket_stream.cc40 class Delegate : public URLRequest::Delegate { class in namespace:net::__anon9841
49 explicit Delegate(StreamRequestImpl* owner) function in class:net::__anon9841::Delegate
51 virtual ~Delegate() {
56 // Implementation of URLRequest::Delegate methods.
96 : delegate_(new Delegate(this)),
186 scoped_ptr<Delegate> delegate_;
225 void Delegate::OnResponseStarted(URLRequest* request) {
262 void Delegate::OnAuthRequired(URLRequest* request,
268 void Delegate
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_install_prompt.h259 class Delegate { class in class:ExtensionInstallPrompt
269 virtual ~Delegate() {}
289 ExtensionInstallPrompt::Delegate*,
335 virtual void ConfirmStandaloneInstall(Delegate* delegate,
346 Delegate* delegate,
356 virtual void ConfirmInstall(Delegate* delegate,
364 virtual void ConfirmReEnable(Delegate* delegate,
372 Delegate* delegate,
381 virtual void ConfirmPermissions(Delegate* delegate,
390 Delegate* delegat
[all...]
/external/chromium_org/net/base/
H A Dsdch_manager.h45 class NET_EXPORT Delegate { class in class:net::SdchFetcher
47 virtual ~Delegate() {}
61 // and then calling back to AddSdchDictionary() in the Delegate instance.
75 : public SdchFetcher::Delegate,
352 // Implementation of SdchFetcher::Delegate.
/external/chromium_org/net/socket_stream/
H A Dsocket_stream.h61 class NET_EXPORT Delegate { class in class:net::SocketStream
115 virtual ~Delegate() {}
118 SocketStream(const GURL& url, Delegate* delegate, URLRequestContext* context,
131 Delegate* delegate() const { return delegate_; }
191 Delegate* delegate_;
/external/chromium_org/net/url_request/
H A Durl_request.h197 class NET_EXPORT Delegate { class in class:net::URLRequest
274 virtual ~Delegate() {}
362 void set_delegate(Delegate* delegate);
714 Delegate* delegate,
760 // |delegate_| is not NULL. See URLRequest::Delegate for the meaning
807 Delegate* delegate_;
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwLayoutSizer.java40 private Delegate mDelegate;
43 * Delegate interface through which the AwLayoutSizer communicates with the view it's sizing.
45 public interface Delegate { interface in class:AwLayoutSizer
59 public void setDelegate(Delegate delegate) {
185 * Notify the AwLayoutSizer that the layout pass requested via Delegate.requestLayout has
H A DAwScrollOffsetManager.java34 public interface Delegate { interface in class:AwScrollOffsetManager
51 private final Delegate mDelegate;
79 public AwScrollOffsetManager(Delegate delegate, OverScroller overScroller) {
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_policy_observer.cc103 void CloudExternalDataPolicyObserver::Delegate::OnExternalDataSet(
108 void CloudExternalDataPolicyObserver::Delegate::OnExternalDataCleared(
113 void CloudExternalDataPolicyObserver::Delegate::OnExternalDataFetched(
119 CloudExternalDataPolicyObserver::Delegate::~Delegate() {
126 Delegate* delegate)
/external/chromium_org/chrome/browser/devtools/device/
H A Dandroid_web_socket.cc24 typedef AndroidDeviceManager::AndroidWebSocket::Delegate Delegate; typedef in class:__anon3536::WebSocketImpl
26 WebSocketImpl(Delegate* delegate,
36 Delegate* delegate_;
45 : public AndroidDeviceManager::AndroidWebSocket::Delegate {
47 DelegateWrapper(base::WeakPtr<Delegate> weak_delegate,
55 // AndroidWebSocket::Delegate implementation
58 base::Bind(&Delegate::OnSocketOpened, weak_delegate_));
63 base::Bind(&Delegate::OnFrameRead, weak_delegate_, message));
68 base::Bind(&Delegate
[all...]
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivetv3_setup_flow.cc81 PrivetV3SetupFlow::Delegate::~Delegate() {
84 PrivetV3SetupFlow::PrivetV3SetupFlow(Delegate* delegate)
/external/chromium_org/chrome/browser/profiles/
H A Dprofile.h136 class Delegate { class in class:Profile
138 virtual ~Delegate();
159 Delegate* delegate,
/external/chromium_org/components/gcm_driver/
H A Dgcm_client.h153 class Delegate { class in class:gcm::GCMClient
239 Delegate* delegate) = 0;
253 // Registers the application for GCM. Delegate::OnRegisterFinished will be
263 // Delegate::OnUnregisterFinished will be called asynchronously upon
268 // Sends a message to a given receiver. Delegate::OnSendFinished will be
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_store.cc63 ComponentCloudPolicyStore::Delegate::~Delegate() {}
66 Delegate* delegate,
/external/chromium_org/content/browser/gamepad/
H A Dxbox_data_fetcher_mac.h69 class Delegate { class in class:XboxController
76 explicit XboxController(Delegate* delegate_);
128 Delegate* delegate_;
137 class XboxDataFetcher : public XboxController::Delegate {
139 class Delegate { class in class:XboxDataFetcher
147 explicit XboxDataFetcher(Delegate* delegate);
170 Delegate* delegate_;
/external/chromium_org/net/android/java/src/org/chromium/net/
H A DProxyChangeListener.java36 private Delegate mDelegate;
54 public interface Delegate { interface in class:ProxyChangeListener
66 public void setDelegateForTesting(Delegate delegate) {
/external/chromium_org/net/http/
H A Dhttp_auth_sspi_win.cc218 void HttpAuthSSPI::Delegate() { function in class:net::HttpAuthSSPI
/external/chromium_org/net/proxy/
H A Dproxy_config_service_linux.h33 // Forward declaration of Delegate.
34 class Delegate;
63 virtual bool SetUpNotifications(Delegate* delegate) = 0;
156 // Delegate::SetNewProxyConfig(). We then notify observers on the IO
162 // wrapped in the Delegate ref counted class. On deleting the
163 // ProxyConfigServiceLinux, Delegate::OnDestroy() is posted to either
165 // notifications will be safely stopped before releasing Delegate.
167 class Delegate : public base::RefCountedThreadSafe<Delegate> { class in class:net::ProxyConfigServiceLinux
171 explicit Delegate(bas
[all...]
H A Dproxy_config_service_linux.cc93 ProxyConfigServiceLinux::Delegate::~Delegate() {
96 bool ProxyConfigServiceLinux::Delegate::GetProxyFromEnvVarForScheme(
116 bool ProxyConfigServiceLinux::Delegate::GetProxyFromEnvVar(
122 bool ProxyConfigServiceLinux::Delegate::GetConfigFromEnv(ProxyConfig* config) {
211 // Delegate::OnDestroy(), while running on the UI thread. However
212 // on exiting the process, it may happen that Delegate::OnDestroy()
294 ProxyConfigServiceLinux::Delegate* delegate) OVERRIDE {
504 ProxyConfigServiceLinux::Delegate* notify_delegate_;
534 // Delegate
1531 ProxyConfigServiceLinux::Delegate::Delegate(base::Environment* env_var_getter) function in class:ProxyConfigServiceLinux::Delegate
1563 ProxyConfigServiceLinux::Delegate::Delegate( function in class:ProxyConfigServiceLinux::Delegate
[all...]
/external/chromium_org/chrome/browser/sessions/
H A Dpersistent_tab_restore_service.cc113 // PersistentTabRestoreService::Delegate ---------------------------------------
116 class PersistentTabRestoreService::Delegate class in class:PersistentTabRestoreService
120 explicit Delegate(Profile* profile);
122 virtual ~Delegate();
235 DISALLOW_COPY_AND_ASSIGN(Delegate);
238 PersistentTabRestoreService::Delegate::Delegate(Profile* profile) function in class:PersistentTabRestoreService::Delegate
247 PersistentTabRestoreService::Delegate::~Delegate() {}
249 void PersistentTabRestoreService::Delegate
[all...]
/external/chromium_org/chrome/service/cloud_print/
H A Dprint_system_win.cc34 class PrintSystemWatcherWin : public base::win::ObjectWatcher::Delegate {
44 class Delegate { class in class:cloud_print::__anon5872::PrintSystemWatcherWin
46 virtual ~Delegate() {}
53 bool Start(const std::string& printer_name, Delegate* delegate) {
89 // base::ObjectWatcher::Delegate method
124 Delegate* delegate_; // Delegate to notify
131 public PrintSystemWatcherWin::Delegate {
137 PrintSystem::PrintServerWatcher::Delegate* delegate) OVERRIDE{
148 // PrintSystemWatcherWin::Delegate implementatio
[all...]
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl_unittest.cc98 class Delegate { class in class:content::__anon7462::TestInterstitialPage
104 virtual ~Delegate() {}
184 void set_delegate(Delegate* delegate) {
197 Delegate* delegate_;
212 class TestInterstitialPageStateGuard : public TestInterstitialPage::Delegate {
/external/chromium_org/net/socket/
H A Dclient_socket_pool_base.h62 class NET_EXPORT_PRIVATE Delegate { class in class:net::ConnectJob
64 Delegate() {} function in class:net::ConnectJob::Delegate
65 virtual ~Delegate() {}
74 DISALLOW_COPY_AND_ASSIGN(Delegate);
81 Delegate* delegate,
140 Delegate* delegate_;
157 : public ConnectJob::Delegate,
206 ConnectJob::Delegate* delegate) const = 0;
329 // ConnectJob::Delegate methods:
689 ConnectJob::Delegate* delegat
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h33 class Delegate { class in class:llvm::MachineRegisterInfo
38 virtual ~Delegate() {}
43 Delegate *TheDelegate;
132 void resetDelegate(Delegate *delegate) {
141 void setDelegate(Delegate *delegate) {
/external/chromium_org/components/invalidation/
H A Dsync_invalidation_listener.cc29 SyncInvalidationListener::Delegate::~Delegate() {}
59 Delegate* delegate) {

Completed in 881 milliseconds

<<1112