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

1 2

  /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 58 class Client {
69 // The client should delete itself when one of these methods is called.
74 virtual ~Client() {}
96 // OnChannelOpened in the client is called.
97 void OpenChannelToPlugin(Client* client);
100 void CancelPendingRequest(Client* client);
103 void CancelSentRequest(Client* client);
    [all...]
ppapi_plugin_process_host.h 34 class Client {
54 virtual ~Client() {}
57 class PluginClient : public Client {
66 class BrokerClient : public Client {
101 // Opens a new channel to the plugin. The client will be notified when the
103 void OpenChannelToPlugin(Client* client);
112 // The client pointer must remain valid until its callback is issued.
127 void RequestPluginChannel(Client* client);
    [all...]
  /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_;
paint_manager.h 27 // The client's OnPaint
50 class Client {
75 virtual ~Client() {}
83 // The Client is a non-owning pointer and must remain valid (normally the
84 // object implementing the Client interface will own the paint manager).
102 PaintManager(pp::Instance* instance, Client* client, bool is_always_opaque);
115 void Initialize(pp::Instance* instance, Client* client,
156 // Does the client paint and executes a Flush if necessary
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebContentDecryptionModuleSession.h 45 class BLINK_PLATFORM_EXPORT Client {
60 virtual ~Client();
65 virtual void setClientInterface(Client*) = 0;
  /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 49 class MEDIA_EXPORT Client {
51 // Callback to tell the client what size of frames and buffers to provide
56 // The client should be prepared to feed at least this many frames into the
71 // is transferred back to the VEA::Client once this callback is made.
88 virtual ~Client() {}
109 // |client| is the client of this video encoder. The provided pointer must
116 Client* client) = 0;
142 // 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 44 class Client : public base::RefCountedThreadSafe<Client> {
46 Client() {}
73 virtual ~Client() {}
76 friend class base::RefCountedThreadSafe<Client>;
83 DISALLOW_COPY_AND_ASSIGN(Client);
86 ServiceUtilityProcessHost(Client* client,
147 // A pointer to our client interface, who will be informed of progress.
148 scoped_refptr<Client> client_
    [all...]
  /external/chromium_org/mojo/services/surfaces/
surfaces_impl.h 29 class Client {
37 Client* client);
66 Client* client_;
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 18 enum Client {
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_message_process_host.h 45 class Client {
47 virtual ~Client() {}
70 base::WeakPtr<Client> weak_client_ui,
78 base::WeakPtr<Client> weak_client_ui,
98 NativeMessageProcessHost(base::WeakPtr<Client> weak_client_ui,
128 // The Client messages will be posted to. Should only be accessed from the
130 base::WeakPtr<Client> weak_client_ui_;
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_task_manager.h 54 class Client {
56 virtual ~Client() {}
71 SyncTaskManager(base::WeakPtr<Client> client,
169 base::WeakPtr<Client> client_;
  /external/chromium_org/chrome/browser/sync_file_system/
sync_process_runner.h 46 class Client {
48 virtual ~Client() {}
68 Client* client,
105 Client* client_;
  /external/chromium_org/mojo/public/cpp/bindings/
interface_impl.h 21 typedef typename Interface::Client Client;
27 // Returns a proxy to the client interface. This is null upon construction,
30 Client* client() { return internal_state_.client(); } function in class:mojo::InterfaceImpl
33 // a call to a method or a client callback method. Returns |true| if a method
40 // Called when the client has connected to this instance.
43 // Called when the client is no longer connected to this instance. NOTE: The
44 // client() method continues to return a non-null pointer after this metho
    [all...]

Completed in 400 milliseconds

1 2