blob: 836e2259b1b87352940a014193b13a6da63d79b0 [file] [log] [blame]
// Copyright 2012 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.
#ifndef CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_INSTANT_OVERLAY_CONTROLLER_MAC_H_
#define CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_INSTANT_OVERLAY_CONTROLLER_MAC_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chrome/browser/ui/search/instant_overlay_controller.h"
class Browser;
@class OverlayableContentsController;
class InstantOverlayControllerMac : public InstantOverlayController {
public:
InstantOverlayControllerMac(Browser* browser,
OverlayableContentsController* overlay);
virtual ~InstantOverlayControllerMac();
private:
// Overridden from InstantOverlayController:
virtual void OverlayStateChanged(const InstantOverlayModel& model) OVERRIDE;
OverlayableContentsController* const overlay_;
DISALLOW_COPY_AND_ASSIGN(InstantOverlayControllerMac);
};
#endif // CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_INSTANT_OVERLAY_CONTROLLER_MAC_H_