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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 12500009: Add the ability to clear the shader disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 422e53e817d1e50b71d5e21f5d4d5a3a16b9a39d..a4a2c69c4f40f7f25350ba14b6cc56588cf86cdf 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -53,7 +53,7 @@
#include "content/browser/geolocation/geolocation_dispatcher_host.h"
#include "content/browser/gpu/gpu_data_manager_impl.h"
#include "content/browser/gpu/gpu_process_host.h"
-#include "content/browser/gpu/shader_disk_cache.h"
+#include "content/browser/gpu/shader_disk_cache_impl.h"
#include "content/browser/histogram_message_filter.h"
#include "content/browser/hyphenator/hyphenator_message_filter.h"
#include "content/browser/in_process_webkit/indexed_db_context_impl.h"
@@ -140,11 +140,11 @@ namespace content {
namespace {
void CacheShaderInfo(int32 id, base::FilePath path) {
- ShaderCacheFactory::GetInstance()->SetCacheInfo(id, path);
+ ShaderCacheFactoryImpl::GetInstance()->SetCacheInfo(id, path);
}
void RemoveShaderInfo(int32 id) {
- ShaderCacheFactory::GetInstance()->RemoveCacheInfo(id);
+ ShaderCacheFactoryImpl::GetInstance()->RemoveCacheInfo(id);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698