| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_TOOLBAR_TEST_TOOLBAR_MODEL_H_ | 5 #ifndef COMPONENTS_TOOLBAR_TEST_TOOLBAR_MODEL_H_ |
| 6 #define COMPONENTS_TOOLBAR_TEST_TOOLBAR_MODEL_H_ | 6 #define COMPONENTS_TOOLBAR_TEST_TOOLBAR_MODEL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "components/toolbar/toolbar_model.h" | 13 #include "components/toolbar/toolbar_model.h" |
| 14 | 14 |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 enum class VectorIconId; | 16 enum class VectorIconId; |
| 17 } | 17 } |
| 18 | 18 |
| 19 // A ToolbarModel that is backed by instance variables, which are initialized | 19 // A ToolbarModel that is backed by instance variables, which are initialized |
| 20 // with some basic values that can be changed with the provided setters. This | 20 // with some basic values that can be changed with the provided setters. This |
| 21 // should be used only for testing. | 21 // should be used only for testing. |
| 22 class TestToolbarModel : public ToolbarModel { | 22 class TestToolbarModel : public ToolbarModel { |
| 23 public: | 23 public: |
| 24 TestToolbarModel(); | 24 TestToolbarModel(); |
| 25 ~TestToolbarModel() override; | 25 ~TestToolbarModel() override; |
| 26 base::string16 GetText() const override; | 26 base::string16 GetText() const override; |
| 27 base::string16 GetFormattedURL(size_t* prefix_end) const override; | 27 base::string16 GetFormattedURL(size_t* prefix_end) const override; |
| 28 base::string16 GetCorpusNameForMobile() const override; | |
| 29 GURL GetURL() const override; | 28 GURL GetURL() const override; |
| 30 bool WouldPerformSearchTermReplacement(bool ignore_editing) const override; | 29 bool WouldPerformSearchTermReplacement(bool ignore_editing) const override; |
| 31 security_state::SecurityStateModel::SecurityLevel GetSecurityLevel( | 30 security_state::SecurityStateModel::SecurityLevel GetSecurityLevel( |
| 32 bool ignore_editing) const override; | 31 bool ignore_editing) const override; |
| 33 int GetIcon() const override; | 32 int GetIcon() const override; |
| 34 gfx::VectorIconId GetVectorIcon() const override; | 33 gfx::VectorIconId GetVectorIcon() const override; |
| 35 base::string16 GetEVCertName() const override; | 34 base::string16 GetEVCertName() const override; |
| 36 bool ShouldDisplayURL() const override; | 35 bool ShouldDisplayURL() const override; |
| 37 | 36 |
| 38 void set_text(const base::string16& text) { text_ = text; } | 37 void set_text(const base::string16& text) { text_ = text; } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 59 bool perform_search_term_replacement_; | 58 bool perform_search_term_replacement_; |
| 60 security_state::SecurityStateModel::SecurityLevel security_level_; | 59 security_state::SecurityStateModel::SecurityLevel security_level_; |
| 61 gfx::VectorIconId icon_; | 60 gfx::VectorIconId icon_; |
| 62 base::string16 ev_cert_name_; | 61 base::string16 ev_cert_name_; |
| 63 bool should_display_url_; | 62 bool should_display_url_; |
| 64 | 63 |
| 65 DISALLOW_COPY_AND_ASSIGN(TestToolbarModel); | 64 DISALLOW_COPY_AND_ASSIGN(TestToolbarModel); |
| 66 }; | 65 }; |
| 67 | 66 |
| 68 #endif // COMPONENTS_TOOLBAR_TEST_TOOLBAR_MODEL_H_ | 67 #endif // COMPONENTS_TOOLBAR_TEST_TOOLBAR_MODEL_H_ |
| OLD | NEW |