Chromium Code Reviews| Index: chrome/browser/ui/zoom/chrome_zoom_level_prefs.cc |
| diff --git a/chrome/browser/ui/zoom/chrome_zoom_level_prefs.cc b/chrome/browser/ui/zoom/chrome_zoom_level_prefs.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4779707bb3cf8f48c9e6cae8657d18ed985e8e2a |
| --- /dev/null |
| +++ b/chrome/browser/ui/zoom/chrome_zoom_level_prefs.cc |
| @@ -0,0 +1,163 @@ |
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/browser/ui/zoom/chrome_zoom_level_prefs.h" |
| + |
| +#include <sstream> |
| + |
| +#include "base/bind.h" |
| +#include "base/prefs/json_pref_store.h" |
| +#include "base/prefs/pref_filter.h" |
| +#include "base/prefs/pref_registry_simple.h" |
| +#include "base/prefs/pref_service_factory.h" |
| +#include "base/prefs/scoped_user_pref_update.h" |
| +#include "base/strings/string_number_conversions.h" |
| +#include "base/values.h" |
| +#include "chrome/common/chrome_constants.h" |
| +#include "chrome/common/pref_names.h" |
| +#include "content/public/browser/browser_thread.h" |
| +#include "content/public/browser/host_zoom_map.h" |
| +#include "content/public/common/page_zoom.h" |
| + |
| +namespace chrome { |
| + |
| +std::string ChromeZoomLevelPrefs::GetHash(const base::FilePath& relative_path) { |
| + size_t int_key = |
| +#if defined(COMPILER_MSVC) |
| + BASE_HASH_NAMESPACE::hash_value(relative_path); |
| +#else |
| + BASE_HASH_NAMESPACE::hash<base::FilePath>()(relative_path); |
| +#endif // COMPILER |
| + return base::SizeTToString(int_key); |
| +} |
| + |
| +ChromeZoomLevelPrefs::ChromeZoomLevelPrefs(PrefService* pref_service, |
| + const base::FilePath& profile_path) |
| + : pref_service_(pref_service), |
| + profile_path_(profile_path), |
| + host_zoom_map_(NULL) { |
| + DCHECK(pref_service_); |
| +} |
| + |
| +ChromeZoomLevelPrefs::~ChromeZoomLevelPrefs() { |
| +} |
| + |
| +void ChromeZoomLevelPrefs::InitPrefsAndCopyToHostZoomMap( |
| + const base::FilePath& partition_path, |
| + content::HostZoomMap* host_zoom_map) { |
| + DCHECK(!partition_path.empty()); |
| + DCHECK((partition_path == profile_path_) || |
| + profile_path_.IsParent(partition_path)); |
| + // This init function must be called only once. |
| + DCHECK(!host_zoom_map_); |
| + DCHECK(host_zoom_map); |
| + host_zoom_map_ = host_zoom_map; |
| + |
| + // Create a partition_key string with no '.'s in it. For the default |
| + // StoragePartition, this string will always be "0". |
| + base::FilePath partition_relative_path; |
| + profile_path_.AppendRelativePath(partition_path, &partition_relative_path); |
| + partition_key_ = GetHash(partition_relative_path); |
| + |
| + // Initialize the default zoom level. |
| + host_zoom_map_->SetDefaultZoomLevel(GetDefaultZoomLevelPref()); |
| + |
| + // Initialize the HostZoomMap with per-host zoom levels from the persisted |
| + // zoom-level preference values. |
| + const base::DictionaryValue* host_zoom_dictionaries = |
| + pref_service_->GetDictionary(prefs::kPartitionPerHostZoomLevels); |
| + const base::DictionaryValue* host_zoom_dictionary = NULL; |
| + if (host_zoom_dictionaries->GetDictionary(partition_key_, |
| + &host_zoom_dictionary)) { |
| + std::vector<std::string> keys_to_remove; |
| + for (base::DictionaryValue::Iterator i(*host_zoom_dictionary); !i.IsAtEnd(); |
| + i.Advance()) { |
| + const std::string& host(i.key()); |
| + double zoom_level = 0; |
| + |
| + bool has_valid_zoom_level = i.value().GetAsDouble(&zoom_level); |
| + |
| + if (host.empty() || !has_valid_zoom_level || |
| + content::ZoomValuesEqual(zoom_level, |
| + host_zoom_map_->GetDefaultZoomLevel())) { |
| + keys_to_remove.push_back(host); |
| + continue; |
| + } |
| + |
| + host_zoom_map_->SetZoomLevelForHost(host, zoom_level); |
| + } |
| + |
| + // Sanitize prefs to remove entries that match the default zoom level and/or |
| + // have an empty host. |
| + { |
| + DictionaryPrefUpdate update(pref_service_, |
| + prefs::kPartitionPerHostZoomLevels); |
| + base::DictionaryValue* host_zoom_dictionaries = update.Get(); |
| + base::DictionaryValue* host_zoom_dictionary = NULL; |
| + host_zoom_dictionaries->GetDictionary(partition_key_, |
| + &host_zoom_dictionary); |
| + for (std::string s : keys_to_remove) |
|
battre
2014/10/08 11:27:10
for (const std::string& s : keys_to_remove)
wjmaclean
2014/10/10 14:40:29
Done.
|
| + host_zoom_dictionary->RemoveWithoutPathExpansion(s, NULL); |
| + } |
| + } |
| + zoom_subscription_ = host_zoom_map_->AddZoomLevelChangedCallback(base::Bind( |
| + &ChromeZoomLevelPrefs::OnZoomLevelChanged, base::Unretained(this))); |
| +} |
| + |
| +void ChromeZoomLevelPrefs::SetDefaultZoomLevelPref(double level) { |
| + if (content::ZoomValuesEqual(level, host_zoom_map_->GetDefaultZoomLevel())) |
| + return; |
| + |
| + DictionaryPrefUpdate update(pref_service_, prefs::kPartitionDefaultZoomLevel); |
| + update->SetDouble(partition_key_, level); |
| + // For unregistered paths, OnDefaultZoomLevelChanged won't be called, so |
| + // set this manually. |
| + host_zoom_map_->SetDefaultZoomLevel(level); |
| + default_zoom_changed_callbacks_.Notify(); |
| +} |
| + |
| +double ChromeZoomLevelPrefs::GetDefaultZoomLevelPref() const { |
| + double default_zoom_level = 0.0; |
| + |
| + const base::DictionaryValue* default_zoom_level_dictionary = |
| + pref_service_->GetDictionary(prefs::kPartitionDefaultZoomLevel); |
| + // If no default has been previously set, the default returned is the |
| + // value used to initialize default_zoom_level in this function. |
| + default_zoom_level_dictionary->GetDouble(partition_key_, &default_zoom_level); |
| + return default_zoom_level; |
| +} |
| + |
| +scoped_ptr<ChromeZoomLevelPrefs::DefaultZoomLevelSubscription> |
| +ChromeZoomLevelPrefs::RegisterDefaultZoomLevelCallback( |
| + const base::Closure& callback) { |
| + return default_zoom_changed_callbacks_.Add(callback); |
| +} |
| + |
| +void ChromeZoomLevelPrefs::OnZoomLevelChanged( |
| + const content::HostZoomMap::ZoomLevelChange& change) { |
| + if (change.mode != content::HostZoomMap::ZOOM_CHANGED_FOR_HOST) |
| + return; |
| + double level = change.zoom_level; |
| + DictionaryPrefUpdate update(pref_service_, |
| + prefs::kPartitionPerHostZoomLevels); |
| + base::DictionaryValue* host_zoom_dictionaries = update.Get(); |
| + DCHECK(host_zoom_dictionaries); |
| + |
| + bool modification_is_removal = |
|
wjmaclean
2014/10/06 19:24:07
I'd like to use this value as a key to when to exp
|
| + content::ZoomValuesEqual(level, host_zoom_map_->GetDefaultZoomLevel()); |
| + |
| + base::DictionaryValue* host_zoom_dictionary = NULL; |
| + if (!host_zoom_dictionaries->GetDictionary(partition_key_, |
| + &host_zoom_dictionary)) { |
| + host_zoom_dictionary = new base::DictionaryValue(); |
| + host_zoom_dictionaries->Set(partition_key_, host_zoom_dictionary); |
| + } |
| + |
| + if (modification_is_removal) |
| + host_zoom_dictionary->RemoveWithoutPathExpansion(change.host, NULL); |
| + else |
| + host_zoom_dictionary->SetDoubleWithoutPathExpansion(change.host, level); |
| +} |
| + |
| +} // namespace chrome |