HomeSort by relevance Sort by last modified time
    Searched refs:Delegate (Results 176 - 200 of 1616) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/service/cloud_print/
job_status_updater.h 27 class Delegate {
33 virtual ~Delegate() {}
41 Delegate* delegate);
47 // CloudPrintURLFetcher::Delegate implementation.
72 Delegate* delegate_;
80 // Visual Studio where it gets confused between multiple Delegate
83 typedef JobStatusUpdater::Delegate JobStatusUpdaterDelegate;
  /external/chromium_org/chrome_frame/
scoped_initialization_manager_unittest.cc 11 // Initialization traits that delegate to a registered delegate instance.
14 class Delegate {
20 static void SetDelegate(Delegate* delegate) {
21 delegate_ = delegate;
35 static Delegate* delegate_;
38 TestInitializationTraits::Delegate* TestInitializationTraits::delegate_ = NULL;
40 // A mock delegate for use in tests.
42 : public TestInitializationTraits::Delegate {
    [all...]
  /external/chromium_org/jingle/notifier/communicator/
login.h 44 public SingleLoginAttempt::Delegate {
46 class Delegate {
59 // it's up to the delegate to stop connecting and/or prompt for
64 virtual ~Delegate();
67 // Does not take ownership of |delegate|, which must not be NULL.
68 Login(Delegate* delegate,
95 // SingleLoginAttempt::Delegate implementation.
118 Delegate* const delegate_;
  /external/chromium_org/net/spdy/
spdy_websocket_stream.h 27 : public SpdyStream::Delegate {
29 // Delegate handles asynchronous events.
30 class NET_EXPORT_PRIVATE Delegate {
32 // Called when InitializeStream() finishes asynchronously. This delegate is
44 // delegate does.
58 virtual ~Delegate() {}
62 Delegate* delegate);
67 // returns ERR_IO_PENDING and call OnCreatedSpdyStream delegate with result
68 // after completion. In other cases, delegate does not be called
    [all...]
  /external/chromium_org/ppapi/proxy/
proxy_channel.h 32 class PPAPI_PROXY_EXPORT Delegate {
34 virtual ~Delegate() {}
44 // on the other side of the channel. This is part of the delegate interface
91 // The delegate pointer must outlive this class, ownership is not
93 virtual bool InitWithChannel(Delegate* delegate,
98 ProxyChannel::Delegate* delegate() const { function in class:ppapi::proxy::ProxyChannel
104 ProxyChannel::Delegate* delegate_;
  /external/chromium_org/remoting/host/win/
worker_process_launcher.h 42 public base::win::ObjectWatcher::Delegate {
44 class Delegate {
46 virtual ~Delegate();
67 WorkerProcessLauncher(scoped_ptr<Delegate> launcher_delegate,
82 // Notification methods invoked by |Delegate|.
85 // Delegate::LaunchProcess(). The delegate has to make sure that this method
90 // The delegate must guarantee that no other notifications are delivered once
94 // Mirrors methods of IPC::Listener to be invoked by |Delegate|. |Delegate|
    [all...]
  /external/chromium_org/ui/base/ime/win/
tsf_event_router.cc 20 // TSFEventRouter::Delegate ------------------------------------
27 class ATL_NO_VTABLE TSFEventRouter::Delegate
32 BEGIN_COM_MAP(Delegate)
37 Delegate();
38 ~Delegate();
90 DISALLOW_COPY_AND_ASSIGN(Delegate);
93 TSFEventRouter::Delegate::Delegate()
100 TSFEventRouter::Delegate::~Delegate() {}
267 CComObject<Delegate>* delegate; local
    [all...]
  /external/chromium_org/content/browser/
power_save_blocker_x11.cc 72 class PowerSaveBlockerImpl::Delegate
73 : public base::RefCountedThreadSafe<PowerSaveBlockerImpl::Delegate> {
76 Delegate(PowerSaveBlockerType type, const std::string& reason);
78 // Post a task to initialize the delegate on the UI thread, which will itself
87 friend class base::RefCountedThreadSafe<Delegate>;
88 ~Delegate() {}
130 DISALLOW_COPY_AND_ASSIGN(Delegate);
133 PowerSaveBlockerImpl::Delegate::Delegate(PowerSaveBlockerType type,
144 void PowerSaveBlockerImpl::Delegate::Init()
    [all...]
power_save_blocker_win.cc 110 class PowerSaveBlockerImpl::Delegate
111 : public base::RefCountedThreadSafe<PowerSaveBlockerImpl::Delegate> {
113 Delegate(PowerSaveBlockerType type, const std::string& reason)
124 friend class base::RefCountedThreadSafe<Delegate>;
125 ~Delegate() {}
131 DISALLOW_COPY_AND_ASSIGN(Delegate);
134 void PowerSaveBlockerImpl::Delegate::ApplyBlock() {
142 void PowerSaveBlockerImpl::Delegate::RemoveBlock() {
150 POWER_REQUEST_TYPE PowerSaveBlockerImpl::Delegate::RequestType() {
162 : delegate_(new Delegate(type, reason))
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
mock_login_library.h 33 Delegate*));
36 Delegate*));
39 Delegate*));
  /external/chromium/chrome/browser/chromeos/login/
mock_auth_response_handler.h 21 // In real AuthResponseHandler subclasses, Handle(data, delegate)
24 // |delegate| directly. Rather than using some kind of global state, we
38 URLFetcher::Delegate* catcher));
40 URLFetcher* MockNetwork(std::string data, URLFetcher::Delegate* delegate);
48 static void CompleteFetch(URLFetcher::Delegate* delegate,
mock_url_fetchers.h 26 URLFetcher::Delegate* d);
45 URLFetcher::Delegate* d);
62 URLFetcher::Delegate* d);
79 URLFetcher::Delegate* d);
96 URLFetcher::Delegate* d);
121 URLFetcher::Delegate* d);
  /external/chromium/chrome/browser/policy/
asynchronous_policy_loader.h 24 AsynchronousPolicyProvider::Delegate* delegate,
54 AsynchronousPolicyProvider::Delegate* delegate() { function in class:policy::AsynchronousPolicyLoader
91 scoped_ptr<AsynchronousPolicyProvider::Delegate> delegate_;
  /external/chromium_org/chrome/browser/chromeos/attestation/
platform_verification_dialog.h 31 const PlatformVerificationFlow::Delegate::ConsentCallback& callback);
40 const PlatformVerificationFlow::Delegate::ConsentCallback& callback);
60 PlatformVerificationFlow::Delegate::ConsentCallback callback_;
  /external/chromium_org/chrome/browser/chromeos/login/
captive_portal_window_proxy.h 24 // Delegate interface for CaptivePortalWindowProxy.
37 typedef CaptivePortalWindowProxyDelegate Delegate;
39 CaptivePortalWindowProxy(Delegate* delegate,
101 Delegate* delegate_;
  /external/chromium_org/chrome/browser/chromeos/login/screens/
mock_update_screen.h 28 virtual void SetDelegate(UpdateScreenActor::Delegate* screen) OVERRIDE;
30 MOCK_METHOD1(MockSetDelegate, void(UpdateScreenActor::Delegate* screen));
44 UpdateScreenActor::Delegate* screen_;
  /external/chromium_org/chrome/browser/local_discovery/
service_discovery_device_lister.h 20 class Delegate {
29 ServiceDiscoveryDeviceLister(Delegate* delegate,
55 Delegate* const delegate_;
  /external/chromium_org/chromeos/dbus/
bluetooth_profile_service_provider.h 23 // Instantiate with a chosen D-Bus object path and delegate object, and pass
30 // passed on to your Delegate object for handling. Responses should be returned
35 class Delegate {
37 virtual ~Delegate() {}
79 // the delegate by this call. The delegate is responsible for checking the
106 // and |delegate| is the object to which all method calls will be passed
111 Delegate* delegate);
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_service_stub.cc 12 ComponentCloudPolicyService::Delegate::~Delegate() {}
15 Delegate* delegate,
  /external/chromium_org/content/test/
mock_google_streaming_server.h 23 class Delegate {
31 explicit MockGoogleStreamingServer(Delegate* delegate);
53 Delegate* delegate_;
  /external/chromium_org/net/http/
http_pipelined_host_forced.h 35 public HttpPipelinedConnection::Delegate {
37 HttpPipelinedHostForced(HttpPipelinedHost::Delegate* delegate,
59 // HttpPipelinedConnection::Delegate interface
73 HttpPipelinedHost::Delegate* delegate_;
  /external/chromium_org/net/socket/
tcp_listen_socket.h 24 const std::string& ip, int port, StreamListenSocket::Delegate* del);
34 TCPListenSocket(SocketDescriptor s, StreamListenSocket::Delegate* del);
51 StreamListenSocket::Delegate* delegate) const OVERRIDE;
  /external/chromium/base/
message_pump_mac.h 12 // 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;
157 // (weak) Delegate passed as an argument to the innermost Run call.
158 Delegate* delegate_;
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)
    [all...]
  /external/chromium/chrome/browser/sidebar/
sidebar_container.h 33 class Delegate {
35 Delegate() {}
36 virtual ~Delegate() {}
39 DISALLOW_COPY_AND_ASSIGN(Delegate);
44 Delegate* delegate);
133 Delegate* delegate_;
  /external/chromium/chrome/browser/speech/
speech_input_bubble.h 36 class Delegate {
49 virtual ~Delegate() {
59 Delegate* delegate,
65 Delegate* delegate,
71 Delegate*,
102 // |Delegate::InfoBubbleFocusChanged| as well.
188 // Visual Studio where it gets confused between multiple Delegate
191 typedef SpeechInputBubble::Delegate SpeechInputBubbleDelegate
    [all...]

Completed in 720 milliseconds

1 2 3 4 5 6 78 91011>>