| Index: chrome/browser/task_manager/renderer_resource.h
|
| diff --git a/chrome/browser/task_manager/renderer_resource.h b/chrome/browser/task_manager/renderer_resource.h
|
| index c588ff6c74ccaa95c8ac4221682788d8b7d4f64c..457f285140e81300265b86f00921690fd4896400 100644
|
| --- a/chrome/browser/task_manager/renderer_resource.h
|
| +++ b/chrome/browser/task_manager/renderer_resource.h
|
| @@ -29,7 +29,7 @@ class RendererResource : public Resource {
|
| virtual int GetRoutingID() const OVERRIDE;
|
|
|
| virtual bool ReportsCacheStats() const OVERRIDE;
|
| - virtual WebKit::WebCache::ResourceTypeStats GetWebCoreCacheStats() const
|
| + virtual blink::WebCache::ResourceTypeStats GetWebCoreCacheStats() const
|
| OVERRIDE;
|
| virtual bool ReportsFPS() const OVERRIDE;
|
| virtual float GetFPS() const OVERRIDE;
|
| @@ -48,7 +48,7 @@ class RendererResource : public Resource {
|
| virtual void Refresh() OVERRIDE;
|
|
|
| virtual void NotifyResourceTypeStats(
|
| - const WebKit::WebCache::ResourceTypeStats& stats) OVERRIDE;
|
| + const blink::WebCache::ResourceTypeStats& stats) OVERRIDE;
|
|
|
| virtual void NotifyFPS(float fps) OVERRIDE;
|
|
|
| @@ -68,7 +68,7 @@ class RendererResource : public Resource {
|
| content::RenderViewHost* render_view_host_;
|
| // The stats_ field holds information about resource usage in the renderer
|
| // process and so it is updated asynchronously by the Refresh() call.
|
| - WebKit::WebCache::ResourceTypeStats stats_;
|
| + blink::WebCache::ResourceTypeStats stats_;
|
| // This flag is true if we are waiting for the renderer to report its stats.
|
| bool pending_stats_update_;
|
|
|
|
|