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

  /external/chromium/chrome/browser/
gpu_process_host_ui_shim.h 52 class GpuProcessHostUIShim
57 // Create a GpuProcessHostUIShim with the given ID. The object can be found
59 static GpuProcessHostUIShim* Create(int host_id);
61 // Destroy the GpuProcessHostUIShim with the given host ID. This can only
69 static GpuProcessHostUIShim* FromID(int host_id);
90 explicit GpuProcessHostUIShim(int host_id);
91 virtual ~GpuProcessHostUIShim();
113 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair.
gpu_process_host_ui_shim.cc 40 IDMap<GpuProcessHostUIShim> g_hosts_by_id;
108 GpuProcessHostUIShim* ui_shim = GpuProcessHostUIShim::FromID(host_id_);
113 GpuProcessHostUIShim::GpuProcessHostUIShim(int host_id)
129 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) {
131 return new GpuProcessHostUIShim(host_id);
135 void GpuProcessHostUIShim::Destroy(int host_id) {
141 void GpuProcessHostUIShim::DestroyAll()
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_process_host_ui_shim.h 46 class GpuProcessHostUIShim : public IPC::Listener,
50 // Create a GpuProcessHostUIShim with the given ID. The object can be found
52 static GpuProcessHostUIShim* Create(int host_id);
54 // Destroy the GpuProcessHostUIShim with the given host ID. This can only
62 CONTENT_EXPORT static GpuProcessHostUIShim* FromID(int host_id);
64 // Get a GpuProcessHostUIShim instance; it doesn't matter which one.
66 CONTENT_EXPORT static GpuProcessHostUIShim* GetOneInstance();
82 explicit GpuProcessHostUIShim(int host_id);
83 virtual ~GpuProcessHostUIShim();
112 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair
    [all...]
gpu_process_host_ui_shim.cc 47 base::LazyInstance<IDMap<GpuProcessHostUIShim> > g_hosts_by_id =
100 GpuProcessHostUIShim* ui_shim = GpuProcessHostUIShim::FromID(host_id);
105 GpuProcessHostUIShim::GpuProcessHostUIShim(int host_id)
111 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) {
113 return new GpuProcessHostUIShim(host_id);
117 void GpuProcessHostUIShim::Destroy(int host_id, const std::string& message) {
121 logging::LOG_ERROR, "GpuProcessHostUIShim",
    [all...]

Completed in 527 milliseconds