| 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..45cc02ab0f74696e246a5116c6d46552d29bf86b
|
| --- /dev/null
|
| +++ b/content/browser/host_zoom_level_context.cc
|
| @@ -0,0 +1,23 @@
|
| +// 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(
|
| + scoped_ptr<ZoomLevelPrefsStore> prefs_store,
|
| + const base::FilePath& file_path,
|
| + double default_zoom_level)
|
| + : host_zoom_map_impl_(new HostZoomMapImpl(default_zoom_level)),
|
| + prefs_store_(prefs_store.release()) {
|
| + if (prefs_store_)
|
| + prefs_store_->InitHostZoomMap(file_path, host_zoom_map_impl_.get());
|
| +}
|
| +
|
| +HostZoomLevelContext::~HostZoomLevelContext() {}
|
| +
|
| +} // namespace content
|
|
|