| Index: content/browser/gpu/gpu_data_manager_impl_private.cc
|
| diff --git a/content/browser/gpu/gpu_data_manager_impl_private.cc b/content/browser/gpu/gpu_data_manager_impl_private.cc
|
| index 2a82137a58a52c90a690891f13b78e92af68e3a8..4d83390227021478d08a161d8469e912f6c3c2c4 100644
|
| --- a/content/browser/gpu/gpu_data_manager_impl_private.cc
|
| +++ b/content/browser/gpu/gpu_data_manager_impl_private.cc
|
| @@ -258,10 +258,6 @@ void ApplyAndroidWorkarounds(const gpu::GPUInfo& gpu_info,
|
| std::string renderer(StringToLowerASCII(gpu_info.gl_renderer));
|
| bool is_img =
|
| gpu_info.gl_vendor.find("Imagination") != std::string::npos;
|
| - bool is_nexus7 =
|
| - gpu_info.machine_model.find("Nexus 7") != std::string::npos;
|
| - bool is_nexus10 =
|
| - gpu_info.machine_model.find("Nexus 10") != std::string::npos;
|
|
|
| gfx::DeviceDisplayInfo info;
|
| int default_tile_size = 256;
|
| @@ -300,14 +296,6 @@ void ApplyAndroidWorkarounds(const gpu::GPUInfo& gpu_info,
|
| command_line->AppendSwitchASCII(
|
| switches::kDefaultTileHeight, size.str());
|
| }
|
| -
|
| - // Increase the resolution of low resolution tiles for Nexus tablets.
|
| - if ((is_nexus7 || is_nexus10) &&
|
| - !command_line->HasSwitch(
|
| - cc::switches::kLowResolutionContentsScaleFactor)) {
|
| - command_line->AppendSwitchASCII(
|
| - cc::switches::kLowResolutionContentsScaleFactor, "0.25");
|
| - }
|
| }
|
| #endif // OS_ANDROID
|
|
|
|
|