Index: chrome/browser/ui/passwords/manage_passwords_icon_mock.cc |
diff --git a/chrome/browser/ui/passwords/manage_passwords_icon_mock.cc b/chrome/browser/ui/passwords/manage_passwords_icon_mock.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..64bdb16b158d77e2fced67b73e3ed3acc6320184 |
--- /dev/null |
+++ b/chrome/browser/ui/passwords/manage_passwords_icon_mock.cc |
@@ -0,0 +1,18 @@ |
+// Copyright 2014 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/passwords/manage_passwords_icon_mock.h" |
+ |
+ManagePasswordsIconMock::ManagePasswordsIconMock() : bubble_shown_count_(0) { |
+} |
+ |
+ManagePasswordsIconMock::~ManagePasswordsIconMock() { |
+} |
+ |
+void ManagePasswordsIconMock::ShowBubbleWithoutUserInteraction() { |
+ ++bubble_shown_count_; |
+} |
+ |
+void ManagePasswordsIconMock::SetStateInternal(ManagePasswordsIcon::State) { |
+} |