blob: d9cbb2c1cd0ffc9004cd0e98b4f31297309ab1e1 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// 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/toolbar/test_toolbar_model.h"
#include "grit/theme_resources.h"
TestToolbarModel::TestToolbarModel()
: ToolbarModel(),
should_replace_url_(false),
security_level_(NONE),
icon_(IDR_LOCATION_BAR_HTTP),
should_display_url_(true),
input_in_progress_(false) {}
TestToolbarModel::~TestToolbarModel() {}
string16 TestToolbarModel::GetText(
bool display_search_urls_as_search_terms) const {
return text_;
}
GURL TestToolbarModel::GetURL() const {
return url_;
}
bool TestToolbarModel::WouldReplaceSearchURLWithSearchTerms() const {
return should_replace_url_;
}
ToolbarModel::SecurityLevel TestToolbarModel::GetSecurityLevel() const {
return security_level_;
}
int TestToolbarModel::GetIcon() const {
return icon_;
}
string16 TestToolbarModel::GetEVCertName() const {
return ev_cert_name_;
}
bool TestToolbarModel::ShouldDisplayURL() const {
return should_display_url_;
}
void TestToolbarModel::SetInputInProgress(bool value) {
input_in_progress_ = value;
}
bool TestToolbarModel::GetInputInProgress() const {
return input_in_progress_;
}
|