Popular sites on the NTP: Try to keep the ordering constant
[chromium-blink-merge.git] / content / public / browser / zoom_level_delegate.h
blobe6a93bde06ef2f09c3b5d8c7b46d329b1be0a22e
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_BROWSER_ZOOM_LEVEL_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_ZOOM_LEVEL_DELEGATE_H_
8 namespace content {
10 class HostZoomMap;
12 // An interface to allow the client to initialize the HostZoomMap.
13 class ZoomLevelDelegate {
14 public:
15 virtual void InitHostZoomMap(HostZoomMap* host_zoom_map) = 0;
16 virtual ~ZoomLevelDelegate() {}
19 } // namespace content
21 #endif // CONTENT_PUBLIC_BROWSER_ZOOM_LEVEL_DELEGATE_H_