| Index: chrome/browser/chromeos/display/quirks_manager_delegate_impl.cc
|
| diff --git a/chrome/browser/chromeos/display/quirks_manager_delegate_impl.cc b/chrome/browser/chromeos/display/quirks_manager_delegate_impl.cc
|
| index fd8b81ba26de7c2ae0382a979a6540ce49a9cd87..6cf53b411a8e3248d03956a4d582fb0671678a7d 100644
|
| --- a/chrome/browser/chromeos/display/quirks_manager_delegate_impl.cc
|
| +++ b/chrome/browser/chromeos/display/quirks_manager_delegate_impl.cc
|
| @@ -23,18 +23,9 @@ std::string QuirksManagerDelegateImpl::GetApiKey() const {
|
| return google_apis::GetAPIKey();
|
| }
|
|
|
| -base::FilePath QuirksManagerDelegateImpl::GetBuiltInDisplayProfileDirectory()
|
| - const {
|
| - base::FilePath path;
|
| - if (!PathService::Get(chromeos::DIR_DEVICE_COLOR_CALIBRATION_PROFILES, &path))
|
| - LOG(ERROR) << "Could not get system path for display calibration profiles.";
|
| - return path;
|
| -}
|
| -
|
| // On chrome device, returns /var/cache/display_profiles.
|
| // On Linux desktop, returns {DIR_USER_DATA}/display_profiles.
|
| -base::FilePath QuirksManagerDelegateImpl::GetDownloadDisplayProfileDirectory()
|
| - const {
|
| +base::FilePath QuirksManagerDelegateImpl::GetDisplayProfileDirectory() const {
|
| base::FilePath directory;
|
| if (base::SysInfo::IsRunningOnChromeOS()) {
|
| PathService::Get(chromeos::DIR_DEVICE_DISPLAY_PROFILES, &directory);
|
|
|