| Index: chrome/browser/web_resource/gpu_blacklist_updater.cc
|
| ===================================================================
|
| --- chrome/browser/web_resource/gpu_blacklist_updater.cc (revision 96607)
|
| +++ chrome/browser/web_resource/gpu_blacklist_updater.cc (working copy)
|
| @@ -104,7 +104,7 @@
|
| IDR_GPU_BLACKLIST));
|
| GpuBlacklist* built_in_list = new GpuBlacklist(GetChromeVersionString());
|
| bool succeed = built_in_list->LoadGpuBlacklist(
|
| - gpu_blacklist_json.as_string(), true);
|
| + gpu_blacklist_json.as_string(), true, true);
|
| DCHECK(succeed);
|
| GpuDataManager::GetInstance()->SetBuiltInGpuBlacklist(built_in_list);
|
|
|
| @@ -121,7 +121,7 @@
|
|
|
| scoped_ptr<GpuBlacklist> gpu_blacklist(
|
| new GpuBlacklist(GetChromeVersionString()));
|
| - if (gpu_blacklist->LoadGpuBlacklist(gpu_blacklist_cache, true)) {
|
| + if (gpu_blacklist->LoadGpuBlacklist(gpu_blacklist_cache, true, true)) {
|
| GpuDataManager::GetInstance()->UpdateGpuBlacklist(
|
| gpu_blacklist.release(), preliminary);
|
| }
|
|
|