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

Side by Side Diff: chrome/browser/password_manager/chrome_password_manager_client.h

Issue 228263004: Password manager internals page: Introduce logger in renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "components/password_manager/content/browser/content_password_manager_d river.h" 10 #include "components/password_manager/content/browser/content_password_manager_d river.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE; 47 scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE;
48 virtual PrefService* GetPrefs() OVERRIDE; 48 virtual PrefService* GetPrefs() OVERRIDE;
49 virtual password_manager::PasswordStore* GetPasswordStore() OVERRIDE; 49 virtual password_manager::PasswordStore* GetPasswordStore() OVERRIDE;
50 virtual password_manager::PasswordManagerDriver* GetDriver() OVERRIDE; 50 virtual password_manager::PasswordManagerDriver* GetDriver() OVERRIDE;
51 virtual base::FieldTrial::Probability GetProbabilityForExperiment( 51 virtual base::FieldTrial::Probability GetProbabilityForExperiment(
52 const std::string& experiment_name) OVERRIDE; 52 const std::string& experiment_name) OVERRIDE;
53 virtual bool IsPasswordSyncEnabled() OVERRIDE; 53 virtual bool IsPasswordSyncEnabled() OVERRIDE;
54 virtual void SetLogger(password_manager::PasswordManagerLogger* logger) 54 virtual void SetLogger(password_manager::PasswordManagerLogger* logger)
55 OVERRIDE; 55 OVERRIDE;
56 virtual void LogSavePasswordProgress(const std::string& text) OVERRIDE; 56 virtual void LogSavePasswordProgress(const std::string& text) OVERRIDE;
57 virtual bool IsLoggingActive() const OVERRIDE;
57 58
58 // Hides any visible generation UI. 59 // Hides any visible generation UI.
59 void HidePasswordGenerationPopup(); 60 void HidePasswordGenerationPopup();
60 61
61 // Convenience method to allow //chrome code easy access to a PasswordManager 62 // Convenience method to allow //chrome code easy access to a PasswordManager
62 // from a WebContents instance. 63 // from a WebContents instance.
63 static password_manager::PasswordManager* GetManagerFromWebContents( 64 static password_manager::PasswordManager* GetManagerFromWebContents(
64 content::WebContents* contents); 65 content::WebContents* contents);
65 66
66 // Convenience method to allow //chrome code easy access to a 67 // Convenience method to allow //chrome code easy access to a
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 115
115 // Points to an active logger instance to use for, e.g., reporting progress on 116 // Points to an active logger instance to use for, e.g., reporting progress on
116 // saving passwords. If there is no active logger (most of the time), the 117 // saving passwords. If there is no active logger (most of the time), the
117 // pointer will be NULL. 118 // pointer will be NULL.
118 password_manager::PasswordManagerLogger* logger_; 119 password_manager::PasswordManagerLogger* logger_;
119 120
120 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); 121 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient);
121 }; 122 };
122 123
123 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ 124 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698