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

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: remove unnecessary forward declaration 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..baba9894cbecf04e50ae2b4b9f31e4cd0a0fb7f8
--- /dev/null
+++ b/chrome/browser/ui/toolbar/fake_toolbar_model.cc
@@ -0,0 +1,56 @@
+// 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"
sky 2012/10/09 20:07:13 Do you really need this?
lliabraa 2012/10/10 19:39:34 Nope...removed.
+
+FakeToolbarModel::FakeToolbarModel()
+ : ToolbarModel(),
+ text_(),
sky 2012/10/09 20:07:13 Remove text_, url_ and ev_cert_name_.
lliabraa 2012/10/10 19:39:34 Done.
+ url_(),
+ should_replace_url_(false),
+ security_level_(NONE),
+ icon_(0),
+ ev_cert_name_(),
+ should_display_url_(true) {}
sky 2012/10/09 20:07:13 You missed input_in_progress_
lliabraa 2012/10/10 19:39:34 Done.
+
+FakeToolbarModel::~FakeToolbarModel() {}
+
+string16 FakeToolbarModel::GetText(
+ bool display_search_urls_as_search_terms) const {
+ return text_;
+}
+
+GURL FakeToolbarModel::GetURL() const {
+ return url_;
+}
+
+bool FakeToolbarModel::WouldReplaceSearchURLWithSearchTerms() const {
+ return should_replace_url_;
+}
+
+ToolbarModel::SecurityLevel FakeToolbarModel::GetSecurityLevel() const {
+ return security_level_;
+}
+
+int FakeToolbarModel::GetIcon() const {
+ return icon_;
+}
+
+string16 FakeToolbarModel::GetEVCertName() const {
+ return ev_cert_name_;
+}
+
+bool FakeToolbarModel::ShouldDisplayURL() const {
+ return should_display_url_;
+}
+
+void FakeToolbarModel::set_input_in_progress(bool value) {
+ input_in_progress_ = value;
+}
+
+bool FakeToolbarModel::input_in_progress() const {
+ return input_in_progress_;
+}

Powered by Google App Engine
This is Rietveld 408576698