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

Unified Diff: components/password_manager/core/browser/password_manager_client.h

Issue 735733002: PasswordManagerClient::LogSavePasswordProgress should be const (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 6 years, 1 month 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: components/password_manager/core/browser/password_manager_client.h
diff --git a/components/password_manager/core/browser/password_manager_client.h b/components/password_manager/core/browser/password_manager_client.h
index c265419edb6a0da61a6f3972e79aefe388c26b46..4bef91fb3fd4e2911b55e53ad4cb70f30e2b86b5 100644
--- a/components/password_manager/core/browser/password_manager_client.h
+++ b/components/password_manager/core/browser/password_manager_client.h
@@ -108,7 +108,7 @@ class PasswordManagerClient {
virtual void OnLogRouterAvailabilityChanged(bool router_can_be_used);
// Forward |text| for display to the LogRouter (if registered with one).
- virtual void LogSavePasswordProgress(const std::string& text);
+ virtual void LogSavePasswordProgress(const std::string& text) const;
// Returns true if logs recorded via LogSavePasswordProgress will be
// displayed, and false otherwise.

Powered by Google App Engine
This is Rietveld 408576698