HomeSort by relevance Sort by last modified time
    Searched defs:Client (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/cc/layers/
video_frame_provider.h 19 // responsible for making sure Client::DidReceiveFrame() and
20 // Client::DidUpdateMatrix() are only called from this same thread.
25 class Client {
27 // Provider will call this method to tell the client to stop using it.
28 // StopUsingProvider() may be called from any thread. The client should
32 // Notifies the provider's client that a call to GetCurrentFrame() will
36 // Notifies the provider's client of a new UV transform matrix to be used.
40 virtual ~Client() {}
45 virtual void SetVideoFrameProviderClient(Client* client) = 0
    [all...]
  /external/chromium_org/content/browser/
child_process_launcher.h 21 // Launches a process asynchronously and notifies the client of the process
26 class CONTENT_EXPORT Client {
35 virtual ~Client() {}
38 // Launches the process asynchronously, calling the client when the result is
47 Client* client);
plugin_process_host.h 57 class Client {
68 // The client should delete itself when one of these methods is called.
73 virtual ~Client() {}
95 // OnChannelOpened in the client is called.
96 void OpenChannelToPlugin(Client* client);
99 void CancelPendingRequest(Client* client);
102 void CancelSentRequest(Client* client);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
Client.cpp 6 #include "modules/serviceworkers/Client.h"
16 PassRefPtr<Client> Client::create(unsigned id)
18 return adoptRef(new Client(id));
21 Client::Client(unsigned id)
27 Client::~Client()
31 void Client::postMessage(ExecutionContext* context, PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& exceptionState)
  /external/chromium_org/pdf/
preview_mode_client.h 16 class PreviewModeClient : public PDFEngine::Client {
18 class Client {
23 explicit PreviewModeClient(Client* client);
26 // PDFEngine::Client implementation.
72 Client* client_;
  /external/chromium_org/third_party/WebKit/public/platform/
WebContentDecryptionModuleSession.h 45 class BLINK_PLATFORM_EXPORT Client {
60 virtual ~Client();
  /frameworks/native/services/surfaceflinger/
Client.h 38 class Client : public BnSurfaceComposerClient
41 Client(const sp<SurfaceFlinger>& flinger);
42 ~Client();
  /external/chromium_org/chrome/browser/extensions/
pack_extension_job.h 23 class Client {
31 virtual ~Client() {}
34 PackExtensionJob(Client* client,
42 // The client should call this when it is destroyed to prevent
64 Client* client_;
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_proxy.h 27 public CloudPrintWipeout::Client,
30 class Client {
32 virtual ~Client() {}
41 void Initialize(ServiceProcessPrefs* service_prefs, Client* client);
75 // CloudPrintWipeout::Client implementation.
90 Client* client_;
cloud_print_wipeout.h 20 class Client {
24 virtual ~Client() {}
27 CloudPrintWipeout(Client* client, const GURL& cloud_print_server_url);
46 // CloudPrintWipeout client.
47 Client* client_;
cloud_print_auth.h 28 class Client {
37 virtual ~Client() {}
40 CloudPrintAuth(Client* client,
80 Client* client_;
99 // client login token used to authenticate request to cloud print server to
cloud_print_connector.h 26 // CloudPrintConnector will notify client over Client interface.
33 class Client {
38 virtual ~Client() {}
41 CloudPrintConnector(Client* client, const ConnectorSettings& settings);
178 // CloudPrintConnector client.
179 Client* client_;
  /external/chromium_org/media/video/
video_decode_accelerator.h 48 class MEDIA_EXPORT Client {
50 // Callback to tell client how many and what size of buffers to provide.
77 virtual ~Client() {}
87 // |client| is the client of this video decoder. The provided pointer must
89 virtual bool Initialize(VideoCodecProfile profile, Client* client) = 0;
100 // Ownership of each picture buffer remains with the client, but the client
118 // back to the client, followed by NotifyFlushDone() being called on th
    [all...]
video_encode_accelerator.h 51 class MEDIA_EXPORT Client {
53 // Callback to tell the client what size of frames and buffers to provide
58 // The client should be prepared to feed at least this many frames into the
73 // is transferred back to the VEA::Client once this callback is made.
90 virtual ~Client() {}
107 // |client| is the client of this video encoder. The provided pointer must
114 Client* client) = 0;
140 // system resources, but its client-visible effects are synchronous. Afte
    [all...]
  /device/sample/apps/client/src/com/example/android/platform_library/client/
Client.java 17 package com.example.android.platform_library.client;
28 public class Client extends Activity {
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebContentDecryptionModuleSession.cpp 40 WebContentDecryptionModuleSession::Client::~Client()
  /external/chromium_org/chrome/browser/
pepper_flash_settings_manager.h 30 class Client {
32 virtual ~Client() {}
55 // |client| must outlive this object. It is guaranteed that |client| won't
57 PepperFlashSettingsManager(Client* client,
69 // Client::OnDeauthorizeContentLicensesCompleted() will be called when the
72 // Client::OnDeauthorizeContentLicensesCompleted().
76 // Client::OnGetPermissionSettingsCompleted() will be called when the
82 // Client::OnSetDefaultPermissionCompleted() will be called when th
    [all...]
  /external/chromium_org/ppapi/utility/graphics/
paint_manager.h 27 /// Scroll, and implement the Client interface. Your OnPaint handler will
37 /// class MyClass : public pp::Instance, public PaintManager::Client {
53 /// // Implementation of PaintManager::Client
71 class Client {
104 virtual ~Client() {}
113 /// and client.
124 /// @param client A non-owning pointer and must remain valid (normally the
125 /// object implementing the Client interface will own the paint manager).
140 PaintManager(Instance* instance, Client* client, bool is_always_opaque)
    [all...]
  /external/chromium_org/chrome/service/
service_utility_process_host.h 47 class Client : public base::RefCountedThreadSafe<Client> {
49 Client() {}
78 virtual ~Client() {}
81 friend class base::RefCountedThreadSafe<Client>;
89 DISALLOW_COPY_AND_ASSIGN(Client);
92 ServiceUtilityProcessHost(Client* client,
158 // A pointer to our client interface, who will be informed of progress.
159 scoped_refptr<Client> client_
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/
interface_impl.h 21 typedef typename Interface::Client Client;
26 // Returns a proxy to the client interface. This is null upon construction,
29 Client* client() { return internal_state_.client(); } function in class:mojo::InterfaceImpl
31 // Called when the client has connected to this instance.
34 // Called when the client is no longer connected to this instance. NOTE: The
35 // client() method continues to return a non-null pointer after this method
36 // is called. After this method is called, any method calls made on client()
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 18 enum Client {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_message_process_host.h 44 class Client {
46 virtual ~Client() {}
69 base::WeakPtr<Client> weak_client_ui,
77 base::WeakPtr<Client> weak_client_ui,
97 NativeMessageProcessHost(base::WeakPtr<Client> weak_client_ui,
127 // The Client messages will be posted to. Should only be accessed from the
129 base::WeakPtr<Client> weak_client_ui_;
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_task_manager.h 57 class Client {
59 virtual ~Client() {}
74 SyncTaskManager(base::WeakPtr<Client> client,
172 base::WeakPtr<Client> client_;

Completed in 306 milliseconds

1 2 3 4