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

Unified Diff: chrome/browser/ui/toolbar/test_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: git try 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
« no previous file with comments | « chrome/browser/ui/toolbar/test_toolbar_model.h ('k') | chrome/browser/ui/toolbar/toolbar_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..7864e3a12228c83df5b0f7c07fb31eb0365ac808
--- /dev/null
+++ b/chrome/browser/ui/toolbar/test_toolbar_model.cc
@@ -0,0 +1,52 @@
+// 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"
+
+TestToolbarModel::TestToolbarModel()
+ : ToolbarModel(),
+ should_replace_url_(false),
+ security_level_(NONE),
+ icon_(0),
+ should_display_url_(true),
+ input_in_progress_(false) {}
+
+TestToolbarModel::~TestToolbarModel() {}
+
+string16 TestToolbarModel::GetText(
+ bool display_search_urls_as_search_terms) const {
+ return text_;
+}
+
+GURL TestToolbarModel::GetURL() const {
+ return url_;
+}
+
+bool TestToolbarModel::WouldReplaceSearchURLWithSearchTerms() const {
+ return should_replace_url_;
+}
+
+ToolbarModel::SecurityLevel TestToolbarModel::GetSecurityLevel() 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_;
+}
+
+void TestToolbarModel::SetInputInProgress(bool value) {
+ input_in_progress_ = value;
+}
+
+bool TestToolbarModel::GetInputInProgress() const {
+ return input_in_progress_;
+}
« no previous file with comments | « chrome/browser/ui/toolbar/test_toolbar_model.h ('k') | chrome/browser/ui/toolbar/toolbar_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698