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

Unified Diff: content/common/gpu/gpu_messages.h

Issue 1703163002: Remove dependency on GURL from content/common/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: content/common/gpu/gpu_messages.h
diff --git a/content/common/gpu/gpu_messages.h b/content/common/gpu/gpu_messages.h
index a05e6c49ed08a217e560a5800a3bd46c817ffdbf..76a45053ce4cab9b7ba35dad53cb4de8910a4a34 100644
--- a/content/common/gpu/gpu_messages.h
+++ b/content/common/gpu/gpu_messages.h
@@ -87,7 +87,7 @@ IPC_STRUCT_BEGIN(GPUCreateCommandBufferConfig)
IPC_STRUCT_MEMBER(int32_t, stream_id)
IPC_STRUCT_MEMBER(content::GpuStreamPriority, stream_priority)
IPC_STRUCT_MEMBER(std::vector<int>, attribs)
- IPC_STRUCT_MEMBER(GURL, active_url)
+ IPC_STRUCT_MEMBER(std::string, active_url)
IPC_STRUCT_MEMBER(gfx::GpuPreference, gpu_preference)
IPC_STRUCT_END()
@@ -469,15 +469,15 @@ IPC_MESSAGE_CONTROL2(GpuHostMsg_AcceleratedSurfaceCreatedChildWindow,
#endif
IPC_MESSAGE_CONTROL1(GpuHostMsg_DidCreateOffscreenContext,
- GURL /* url */)
+ std::string /* url */)
IPC_MESSAGE_CONTROL3(GpuHostMsg_DidLoseContext,
bool /* offscreen */,
gpu::error::ContextLostReason /* reason */,
- GURL /* url */)
+ std::string /* url */)
IPC_MESSAGE_CONTROL1(GpuHostMsg_DidDestroyOffscreenContext,
- GURL /* url */)
+ std::string /* url */)
// Tells the browser about GPU memory usage statistics for UMA logging.
IPC_MESSAGE_CONTROL1(GpuHostMsg_GpuMemoryUmaStats,

Powered by Google App Engine
This is Rietveld 408576698