diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-24 01:55:17 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-24 01:55:17 +0000 |
commit | 9665973cfe562be5aaa231b7caec720c84614e31 (patch) | |
tree | 02025486959bb172fec55dbec64fc5ec2e05039e /content/browser/gpu/gpu_process_host.h | |
parent | 1ff7b819a7f7185e7f82d844a0d8f1e50de27b35 (diff) | |
download | chromium_src-9665973cfe562be5aaa231b7caec720c84614e31.zip chromium_src-9665973cfe562be5aaa231b7caec720c84614e31.tar.gz chromium_src-9665973cfe562be5aaa231b7caec720c84614e31.tar.bz2 |
GPU process sends IPC to browser process indicating success of initialization.
This is used for a histogram to measure the proportion of normal GPU process terminations that are caused by failure to initialize.
BUG=142797
Review URL: https://chromiumcodereview.appspot.com/10872051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/gpu/gpu_process_host.h')
-rw-r--r-- | content/browser/gpu/gpu_process_host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h index bf6b96b..3e26692 100644 --- a/content/browser/gpu/gpu_process_host.h +++ b/content/browser/gpu/gpu_process_host.h @@ -116,6 +116,7 @@ class GpuProcessHost : public content::BrowserChildProcessHostDelegate, virtual void OnProcessCrashed(int exit_code) OVERRIDE; // Message handlers. + void OnInitialized(bool result); void OnChannelEstablished(const IPC::ChannelHandle& channel_handle); void OnCommandBufferCreated(const int32 route_id); void OnDestroyCommandBuffer(int32 surface_id); |