| 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..11c254710e0b93d3b92d90a46a6a559bc545bfae
|
| --- /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<ZoomLevelPrefsDelegate> delegate,
|
| + const base::FilePath& file_path,
|
| + double default_zoom_level)
|
| + : host_zoom_map_impl_(new HostZoomMapImpl(default_zoom_level)),
|
| + delegate_(delegate.release()) {
|
| + if (delegate_)
|
| + delegate_->InitZoomLevels(file_path, host_zoom_map_impl_.get());
|
| +}
|
| +
|
| +HostZoomLevelContext::~HostZoomLevelContext() {}
|
| +
|
| +} // namespace content
|
|
|