HomeSort by relevance Sort by last modified time
    Searched defs:Delegate (Results 1 - 17 of 17) sorted by null

  /external/chromium/base/
object_watcher.h 25 // class MyClass : public base::ObjectWatcher::Delegate {
44 class Delegate {
46 virtual ~Delegate() {}
55 // When the object is signaled, the given delegate is notified on the thread
57 // deleting the delegate.
61 bool StartWatching(HANDLE object, Delegate* delegate);
64 // watch is still active, then it is canceled, and the associated delegate is
message_pump.h 17 // these delegate methods are used.
18 class Delegate {
20 virtual ~Delegate() {}
47 // messages as well as for giving cycles to the delegate periodically. The
48 // message pump should take care to mix delegate callbacks with native
102 virtual void Run(Delegate* delegate) = 0;
platform_thread.h 53 class Delegate {
55 virtual ~Delegate() {}
62 // and |delegate|'s ThreadMain method will be executed on the newly created
66 // the Delegate object outlives the thread.
67 static bool Create(size_t stack_size, Delegate* delegate,
73 static bool CreateNonJoinable(size_t stack_size, Delegate* delegate);
directory_watcher.h 17 // The delegate will get called whenever a file is added or changed in the
21 class Delegate {
23 virtual ~Delegate() {}
33 // if |backend_loop| is NULL. If |recursive| is true, the delegate will be
41 bool Watch(const FilePath& path, Delegate* delegate,
43 return impl_->Watch(path, delegate, backend_loop, recursive);
49 virtual bool Watch(const FilePath& path, Delegate* delegate,
waitable_event_watcher.h 33 // class MyClass : public base::WaitableEventWatcher::Delegate {
70 class Delegate {
72 virtual ~Delegate() { }
86 // When @event is signaled, the given delegate is called on the thread of the
87 // current message loop when StartWatching is called. The delegate is not
90 bool StartWatching(WaitableEvent* event, Delegate* delegate);
97 // The delegate will *not* be called for the current watch after this
98 // function returns. Since the delegate runs on the same thread as this
110 // Return the delegate, or NULL if there is no delegate
112 Delegate* delegate() { function in class:base::WaitableEventWatcher
    [all...]
simple_thread.h 15 // a new thread, and execute the Delegate's virtual Run() in this new thread
21 // Start() having been called (and a thread never created). The Delegate
29 // class MyThreadRunner : public DelegateSimpleThread::Delegate { ... };
56 class SimpleThread : public PlatformThread::Delegate {
88 // We follow the PlatformThread Delegate interface.
121 class Delegate {
123 Delegate() { }
124 virtual ~Delegate() { }
128 DelegateSimpleThread(Delegate* delegate,
    [all...]
  /external/chromium/net/tools/fetch/
http_listen_socket.h 18 class Delegate {
24 virtual ~Delegate() {}
28 HttpListenSocket::Delegate* delegate);
46 HttpListenSocket(SOCKET s, HttpListenSocket::Delegate* del);
54 HttpListenSocket::Delegate* delegate_;
  /external/chromium/net/proxy/
proxy_config_service_linux.h 27 // Forward declaration of Delegate.
28 class Delegate;
54 virtual bool SetupNotification(Delegate* delegate) = 0;
94 // thread through Delegate::SetNewProxyConfig().
99 // wrapped in the Delegate ref counted class. On deleting the
100 // ProxyConfigServiceLinux, Delegate::OnDestroy() is posted to the
102 // releasing Delegate.
104 class Delegate : public base::RefCountedThreadSafe<Delegate> {
    [all...]
  /external/webkit/WebKit/chromium/src/
DevToolsRPC.h 63 // DevToolsRPC::Delegate* transport;
244 delegate->Method(); \
250 delegate->Method(RpcTypeTrait<T1>::parse(args[0])); \
256 delegate->Method( \
265 delegate->Method( \
275 delegate->Method( \
286 delegate->Method( \
301 // the serialized message into its delegate.
325 explicit Class##Stub(Delegate* delegate) : DevToolsRPC(delegate) { }
    [all...]
  /external/chromium/net/base/
transport_security_state.h 72 class Delegate {
79 void SetDelegate(Delegate*);
101 // Our delegate who gets notified when we are dirtied, or NULL.
102 Delegate* delegate_;
host_resolver_impl_unittest.cc 98 // resolve results by forwarding them to Delegate.
101 // Delegate interface, for notification when the ResolveRequest completes.
102 class Delegate {
104 virtual ~Delegate() {}
111 Delegate* delegate)
112 : info_(hostname, port), resolver_(resolver), delegate_(delegate),
122 Delegate* delegate)
123 : info_(info), resolver_(resolver), delegate_(delegate),
    [all...]
  /external/chromium/net/url_request/
url_request.h 52 // object during the handling of a callback to its delegate. Of course, once
53 // the URLRequest is deleted, no further callbacks to its delegate will occur.
86 // the request delegate being informed of the redirect. Can return a new
89 // the delegate never sees the original redirect response, instead the
97 // the request delegate being informed of the response. This is also
101 // continue. If a new job is provided, the delegate never sees the original
109 // The delegate's methods are called from the message loop of the thread
123 // Read() initiated by delegate
132 class Delegate {
134 virtual ~Delegate() {}
283 Delegate* delegate() const { return delegate_; } function in class:URLRequest
    [all...]
  /external/chromium/net/socket/
client_socket_pool_base.h 54 class Delegate {
56 Delegate() {}
57 virtual ~Delegate() {}
59 // Alerts the delegate that the connection completed.
63 DISALLOW_COPY_AND_ASSIGN(Delegate);
69 Delegate* delegate,
99 // Alerts the delegate that the ConnectJob has timed out.
106 Delegate* delegate_;
122 public ConnectJob::Delegate,
    [all...]
  /external/chromium/net/socket_stream/
socket_stream.h 56 class Delegate {
58 virtual ~Delegate() {}
79 // The delegate should call RestartWithAuth() if credential for |auth_info|
88 // This is only for error reporting to the delegate.
93 SocketStream(const GURL& url, Delegate* delegate);
104 Delegate* delegate() const { return delegate_; } function in class:net::SocketStream
113 // Once the connection is established, calls delegate's OnConnected.
123 // Once the connection is closed, calls delegate's OnClose
    [all...]
  /prebuilt/common/osgi/
osgi.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 7671 milliseconds