Index: components/password_manager/core/browser/dummy_log_manager.cc |
diff --git a/components/password_manager/core/browser/dummy_log_manager.cc b/components/password_manager/core/browser/dummy_log_manager.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1c9026b692ad0e4fda0d8f30c9089d3ec6445d87 |
--- /dev/null |
+++ b/components/password_manager/core/browser/dummy_log_manager.cc |
@@ -0,0 +1,17 @@ |
+// Copyright 2015 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 "components/password_manager/core/browser/dummy_log_manager.h" |
+ |
+namespace password_manager { |
+ |
+void DummyLogManager::OnLogRouterAvailabilityChanged(bool router_can_be_used) {} |
+ |
+void DummyLogManager::LogSavePasswordProgress(const std::string& text) const {} |
+ |
+bool DummyLogManager::IsLoggingActive() const { |
+ return false; |
+} |
+ |
+} // namespace password_manager |