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

1 2 3 4 5 6 7 8 910

  /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/cc/test/
fake_video_frame_provider.h 19 virtual void SetVideoFrameProviderClient(Client* client) OVERRIDE;
24 Client* client() { return client_; } function in class:cc::FakeVideoFrameProvider
32 Client* client_;
fake_video_frame_provider.cc 17 void FakeVideoFrameProvider::SetVideoFrameProviderClient(Client* client) {
18 client_ = client;
  /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/media/video/capture/
fake_video_capture_device.h 31 scoped_ptr<VideoCaptureDevice::Client> client) OVERRIDE;
42 scoped_ptr<Client> client);
53 scoped_ptr<VideoCaptureDevice::Client> client_;
file_video_capture_device.h 41 scoped_ptr<VideoCaptureDevice::Client> client) OVERRIDE;
51 scoped_ptr<Client> client);
63 scoped_ptr<VideoCaptureDevice::Client> client_;
  /external/chromium_org/chrome/service/cloud_print/
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_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_;
  /external/chromium_org/mojo/services/surfaces/
surfaces_service_impl.h 20 // The instances pointed to by |manager|, |next_id_namespace| and |client| are
24 SurfacesImpl::Client* client);
34 SurfacesImpl::Client* client_;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebContentDecryptionModuleSession.cpp 40 WebContentDecryptionModuleSession::Client::~Client()
  /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/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...]
  /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/mojo/public/cpp/bindings/lib/
interface_impl_internal.h 30 typedef typename Interface::Client Client;
73 filters.Append<typename Interface::Client::ResponseValidator_>();
79 proxy_ = new typename Client::Proxy_(router_);
92 Client* client() { return proxy_; } function in class:mojo::internal::InterfaceImplState
115 typename Client::Proxy_* proxy_;
  /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/media/blink/
video_frame_compositor.h 47 cc::VideoFrameProvider::Client* client) OVERRIDE;
59 cc::VideoFrameProvider::Client* 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/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/chrome/browser/sync_file_system/
sync_process_runner.h 46 class Client {
48 virtual ~Client() {}
68 Client* client,
105 Client* client_;
  /external/chromium_org/native_client_sdk/src/doc/reference/
nacl-manifest-format.rst 2 Native Client Manifest (nmf) Format
13 Every Native Client application has a `JSON-formatted <http://www.json.org/>`_
15 download and load your Native Client application files and libraries.
43 in the Native Client runtime environment. For a Portable Native Client
45 For architecture-specific Native Client applications, this is a list
52 Example of a ``program`` for Portable Native Client:
80 Portable Native Client applications can also specify an ``optlevel`` field.
89 Portable Native Client translator and runtime may *automatically* choose
94 Client debugging is enabled with either the ``--enable-nacl-debug`` Chrom
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 18 enum Client {
  /external/chromium_org/pdf/
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/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_;

Completed in 1082 milliseconds

1 2 3 4 5 6 7 8 910