blob: d1d558ca7faa3dea38b5220e55dcdb321d57f27c (
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
|
// 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) {}
TestToolbarModel::~TestToolbarModel() {}
string16 TestToolbarModel::GetText() const {
return text_;
}
string16 TestToolbarModel::GetCorpusNameForMobile() const {
return string16();
}
GURL TestToolbarModel::GetURL() const {
return url_;
}
bool TestToolbarModel::WouldPerformSearchTermReplacement(
bool ignore_editing) const {
return should_replace_url_;
}
ToolbarModel::SecurityLevel TestToolbarModel::GetSecurityLevel(
bool ignore_editing) 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_;
}
|