Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1554)

Unified Diff: content/browser/host_zoom_level_context.cc

Issue 393133002: Migrate HostZoomMap to live in StoragePartition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/host_zoom_level_context.cc
diff --git a/content/browser/host_zoom_level_context.cc b/content/browser/host_zoom_level_context.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5430dde8c4a17ba61b59b818f0f32b143a654031
--- /dev/null
+++ b/content/browser/host_zoom_level_context.cc
@@ -0,0 +1,26 @@
+// 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 "content/browser/host_zoom_level_context.h"
+
+#include "content/browser/host_zoom_map_impl.h"
+
+namespace content {
+
+HostZoomLevelContext::HostZoomLevelContext(ZoomLevelPrefsDelegate* delegate,
+ const base::FilePath& file_path,
+ double default_zoom_level)
+ : host_zoom_map_impl_(new HostZoomMapImpl(default_zoom_level)),
+ delegate_(delegate) {
+ if (delegate_)
+ delegate_->InitZoomLevels(file_path, host_zoom_map_impl_.get());
+}
+
+HostZoomLevelContext::~HostZoomLevelContext() {
+ // This needs to be released before the destructor for the HostZoomMapImpl
+ // is called.
+ delegate_ = NULL;
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698