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

Unified Diff: net/http/transport_security_persister.h

Issue 511163002: Net-related fixups for scoped_refptr conversion operator cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
Index: net/http/transport_security_persister.h
diff --git a/net/http/transport_security_persister.h b/net/http/transport_security_persister.h
index 7725ba124e603b19fd74c0181ebd5a655a4ce305..d57986f0b1c7a1bb656139fbb49d177e5b5ff934 100644
--- a/net/http/transport_security_persister.h
+++ b/net/http/transport_security_persister.h
@@ -57,10 +57,11 @@ class NET_EXPORT TransportSecurityPersister
: public TransportSecurityState::Delegate,
public base::ImportantFileWriter::DataSerializer {
public:
- TransportSecurityPersister(TransportSecurityState* state,
- const base::FilePath& profile_path,
- base::SequencedTaskRunner* file_task_runner,
- bool readonly);
+ TransportSecurityPersister(
+ TransportSecurityState* state,
+ const base::FilePath& profile_path,
+ const scoped_refptr<base::SequencedTaskRunner>& file_task_runner,
+ bool readonly);
virtual ~TransportSecurityPersister();
// Called by the TransportSecurityState when it changes its state.

Powered by Google App Engine
This is Rietveld 408576698