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

  /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();
105 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair
    [all...]
gpu_process_host_ui_shim.cc 43 base::LazyInstance<IDMap<GpuProcessHostUIShim> > g_hosts_by_id =
96 GpuProcessHostUIShim* ui_shim = GpuProcessHostUIShim::FromID(host_id);
101 GpuProcessHostUIShim::GpuProcessHostUIShim(int host_id)
112 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) {
114 return new GpuProcessHostUIShim(host_id);
118 void GpuProcessHostUIShim::Destroy(int host_id, const std::string& message) {
122 logging::LOG_ERROR, "GpuProcessHostUIShim",
    [all...]

Completed in 425 milliseconds