Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(857)

Unified Diff: chrome/browser/gpu_process_host_ui_shim.cc

Issue 6588138: Implemented multisampling control in software rendering list. Move prelimina... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: For the records: landing patch Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/gpu_process_host_ui_shim.cc
===================================================================
--- chrome/browser/gpu_process_host_ui_shim.cc (revision 76920)
+++ chrome/browser/gpu_process_host_ui_shim.cc (working copy)
@@ -380,8 +380,6 @@
OnDestroyCommandBuffer)
IPC_MESSAGE_HANDLER(GpuHostMsg_GraphicsInfoCollected,
OnGraphicsInfoCollected)
- IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuHostMsg_PreliminaryGraphicsInfoCollected,
- OnPreliminaryGraphicsInfoCollected)
IPC_MESSAGE_HANDLER(GpuHostMsg_OnLogMessage,
OnLogMessage)
IPC_MESSAGE_HANDLER(GpuHostMsg_SynchronizeReply,
@@ -463,16 +461,6 @@
gpu_data_manager_->UpdateGpuInfo(gpu_info);
}
-void GpuProcessHostUIShim::OnPreliminaryGraphicsInfoCollected(
- const GPUInfo& gpu_info, IPC::Message* reply_msg) {
- gpu_data_manager_->UpdateGpuInfo(gpu_info);
- GpuFeatureFlags flags = gpu_data_manager_->GetGpuFeatureFlags();
-
- GpuHostMsg_PreliminaryGraphicsInfoCollected::WriteReplyParams(
- reply_msg, flags.flags() != 0);
- Send(reply_msg);
-}
-
void GpuProcessHostUIShim::OnLogMessage(int level,
const std::string& header,
const std::string& message) {
« no previous file with comments | « chrome/browser/gpu_process_host_ui_shim.h ('k') | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698