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

Unified Diff: content/browser/gpu/gpu_process_host.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/browser/gpu/gpu_process_host.h
diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h
index af4f4d83da8c5282a83c91b69dfd3099312231c4..39e8f0ad05ed0da0b89e0e4dc1be3982d485bc1d 100644
--- a/content/browser/gpu/gpu_process_host.h
+++ b/content/browser/gpu/gpu_process_host.h
@@ -177,11 +177,11 @@ class GpuProcessHost : public BrowserChildProcessHostDelegate,
void OnInitialized(bool result, const gpu::GPUInfo& gpu_info);
void OnChannelEstablished(const IPC::ChannelHandle& channel_handle);
void OnGpuMemoryBufferCreated(const gfx::GpuMemoryBufferHandle& handle);
- void OnDidCreateOffscreenContext(const GURL& url);
+ void OnDidCreateOffscreenContext(const std::string& url);
void OnDidLoseContext(bool offscreen,
gpu::error::ContextLostReason reason,
- const GURL& url);
- void OnDidDestroyOffscreenContext(const GURL& url);
+ const std::string& url);
+ void OnDidDestroyOffscreenContext(const std::string& url);
void OnGpuMemoryUmaStatsReceived(const GPUMemoryUmaStats& stats);
#if defined(OS_MACOSX)
void OnAcceleratedSurfaceBuffersSwapped(const IPC::Message& message);

Powered by Google App Engine
This is Rietveld 408576698