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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// Copyright (c) 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/search/search_model.h"
#include "chrome/browser/search/search.h"
#include "chrome/browser/ui/search/search_model_observer.h"
SearchModel::SearchModel() {
}
SearchModel::~SearchModel() {
}
// static.
bool SearchModel::ShouldChangeTopBarsVisibility(const State& old_state,
const State& new_state) {
// If mode has changed, only change top bars visibility if new mode is not
// |SEARCH_SUGGESTIONS| or |SEARCH_RESULTS|. Top bars visibility for
// these 2 modes is determined when the mode stays the same, and:
// - for |NTP/SERP| pages: by SearchBox API, or
// - for |DEFAULT| pages: by platform-specific implementation of
// |InstantOverlayController| when it shows/hides the Instant overlay.
return old_state.mode != new_state.mode ?
!new_state.mode.is_search() : new_state.mode.is_search();
}
void SearchModel::SetState(const State& new_state) {
DCHECK(chrome::IsInstantExtendedAPIEnabled())
<< "Please do not try to set the SearchModel mode without first "
<< "checking if Search is enabled.";
if (state_ == new_state)
return;
const State old_state = state_;
state_ = new_state;
FOR_EACH_OBSERVER(SearchModelObserver, observers_,
ModelChanged(old_state, state_));
}
void SearchModel::SetMode(const SearchMode& new_mode) {
DCHECK(chrome::IsInstantExtendedAPIEnabled())
<< "Please do not try to set the SearchModel mode without first "
<< "checking if Search is enabled.";
if (state_.mode == new_mode)
return;
const State old_state = state_;
state_.mode = new_mode;
// For |SEARCH_SUGGESTIONS| and |SEARCH_RESULTS| modes, SearchBox API will
// determine visibility of top bars via SetTopBarsVisible(); for other modes,
// top bars are always visible, if available.
if (!state_.mode.is_search())
state_.top_bars_visible = true;
FOR_EACH_OBSERVER(SearchModelObserver, observers_,
ModelChanged(old_state, state_));
}
void SearchModel::SetTopBarsVisible(bool visible) {
DCHECK(chrome::IsInstantExtendedAPIEnabled())
<< "Please do not try to set the SearchModel mode without first "
<< "checking if Search is enabled.";
if (state_.top_bars_visible == visible)
return;
const State old_state = state_;
state_.top_bars_visible = visible;
FOR_EACH_OBSERVER(SearchModelObserver, observers_,
ModelChanged(old_state, state_));
}
void SearchModel::AddObserver(SearchModelObserver* observer) {
observers_.AddObserver(observer);
}
void SearchModel::RemoveObserver(SearchModelObserver* observer) {
observers_.RemoveObserver(observer);
}
|