blob: 1180fca6cf3bb5d61dd582265754623f2e4b7c84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// 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.
#include "chrome/browser/ui/gtk/instant_overlay_controller_gtk.h"
#include "chrome/browser/ui/gtk/browser_window_gtk.h"
#include "chrome/browser/ui/gtk/tab_contents_container_gtk.h"
#include "chrome/browser/ui/search/instant_overlay_model.h"
InstantOverlayControllerGtk::InstantOverlayControllerGtk(
BrowserWindowGtk* window,
TabContentsContainerGtk* contents)
: InstantOverlayController(window->browser()),
window_(window),
contents_(contents) {
}
InstantOverlayControllerGtk::~InstantOverlayControllerGtk() {
}
void InstantOverlayControllerGtk::OverlayStateChanged(
const InstantOverlayModel& model) {
if (model.mode().is_search_suggestions()) {
// TODO(jered): Support non-100% height.
contents_->SetOverlay(model.GetOverlayContents());
} else {
contents_->SetOverlay(NULL);
}
window_->MaybeShowBookmarkBar(false);
}
|