| 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 f9cd5672d7b00fe2c976f957ac272b21622d29ac..9ce9d307d5cce9bcea0ae119e9cb6168a41c916d 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"
|
| @@ -144,11 +144,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
|
|
|