| Index: chrome/browser/ui/toolbar/test_toolbar_model.cc
|
| diff --git a/chrome/browser/ui/toolbar/test_toolbar_model.cc b/chrome/browser/ui/toolbar/test_toolbar_model.cc
|
| index f086bcb70c715698c806c0f566f58c0f738c86b7..2c6d6eb664d9b02fcb08178b296695c45025ceca 100644
|
| --- a/chrome/browser/ui/toolbar/test_toolbar_model.cc
|
| +++ b/chrome/browser/ui/toolbar/test_toolbar_model.cc
|
| @@ -12,7 +12,8 @@ TestToolbarModel::TestToolbarModel()
|
| perform_search_term_replacement_(false),
|
| security_level_(NONE),
|
| icon_(IDR_LOCATION_BAR_HTTP),
|
| - should_display_url_(true) {}
|
| + should_display_url_(true),
|
| + should_show_origin_chip_(false) {}
|
|
|
| TestToolbarModel::~TestToolbarModel() {}
|
|
|
| @@ -61,3 +62,7 @@ base::string16 TestToolbarModel::GetEVCertName() const {
|
| bool TestToolbarModel::ShouldDisplayURL() const {
|
| return should_display_url_;
|
| }
|
| +
|
| +bool TestToolbarModel::ShouldShowOriginChip() const {
|
| + return should_show_origin_chip_;
|
| +}
|
|
|