Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Unified Diff: chrome/browser/ui/toolbar/fake_toolbar_model.cc

Issue 11040055: Adds a FakeToolbarModel for use in testing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/toolbar/fake_toolbar_model.cc
diff --git a/chrome/browser/ui/toolbar/fake_toolbar_model.cc b/chrome/browser/ui/toolbar/fake_toolbar_model.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d9e6c5d731cabbfdd8694c1e86230ac586242b38
--- /dev/null
+++ b/chrome/browser/ui/toolbar/fake_toolbar_model.cc
@@ -0,0 +1,76 @@
+// 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/fake_toolbar_model.h"
+
+#include "base/utf_string_conversions.h"
+
+FakeToolbarModel::FakeToolbarModel() : ToolbarModel(NULL),
sky 2012/10/05 16:41:22 ToolbarModel(NULL) should be on the next line.
lliabraa 2012/10/09 19:29:35 Done.
+ text_(ASCIIToUTF16("www.chromium.org")),
sky 2012/10/05 16:41:22 I think you should leave all the strings/urls empt
lliabraa 2012/10/09 19:29:35 Done.
+ url_("http://www.chromium.org"),
+ should_replace_url_(false),
+ security_level_(NONE),
+ icon_(0),
+ ev_cert_name_(ASCIIToUTF16("ev cert name")),
+ should_display_url_(true) {}
+
+FakeToolbarModel::~FakeToolbarModel() {}
+
+void FakeToolbarModel::SetText(string16 text) {
+ text_ = text;
+}
+
+string16 FakeToolbarModel::GetText(
+ bool display_search_urls_as_search_terms) const {
+ return text_;
+}
+
+void FakeToolbarModel::SetURL(GURL url) {
+ url_ = url;
+}
+
+GURL FakeToolbarModel::GetURL() const {
+ return url_;
+}
+
+void FakeToolbarModel::SetReplaceSearchURLWithSearchTerms(
+ bool should_replace_url) {
+ should_replace_url_ = should_replace_url;
+}
+
+bool FakeToolbarModel::WouldReplaceSearchURLWithSearchTerms() const {
+ return should_replace_url_;
+}
+
+void FakeToolbarModel::SetSecurityLevel(SecurityLevel security_level) {
+ security_level_ = security_level;
+}
+
+ToolbarModel::SecurityLevel FakeToolbarModel::GetSecurityLevel() const {
+ return security_level_;
+}
+
+void FakeToolbarModel::SetIcon(int icon) {
+ icon_ = icon;
+}
+
+int FakeToolbarModel::GetIcon() const {
+ return icon_;
+}
+
+void FakeToolbarModel::SetEVCertName(string16 ev_cert_name) {
+ ev_cert_name_ = ev_cert_name;
+}
+
+string16 FakeToolbarModel::GetEVCertName() const {
+ return ev_cert_name_;
+}
+
+void FakeToolbarModel::SetShouldDisplayURL(bool should_display_url) {
+ should_display_url_ = should_display_url;
+}
+
+bool FakeToolbarModel::ShouldDisplayURL() const {
+ return should_display_url_;
+}

Powered by Google App Engine
This is Rietveld 408576698