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

Unified Diff: chrome/browser/chromeos/login/test/https_forwarder.h

Issue 2513543003: Don't hardcode copy of root cert in chromeos/login/test/https_forwarder.cc. (Closed)
Patch Set: Created 4 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: chrome/browser/chromeos/login/test/https_forwarder.h
diff --git a/chrome/browser/chromeos/login/test/https_forwarder.h b/chrome/browser/chromeos/login/test/https_forwarder.h
index aa7eb9751ab6bedd3a8a043304597b23b3196909..8a6989fdc43da79ecacf73296ac2ad0dfeb72b1f 100644
--- a/chrome/browser/chromeos/login/test/https_forwarder.h
+++ b/chrome/browser/chromeos/login/test/https_forwarder.h
@@ -12,6 +12,10 @@
#include "base/macros.h"
#include "url/gurl.h"
+namespace net {
+class ScopedTestRoot;
+} // namespace net
achuithb 2016/11/28 09:09:49 drop comment
mattm 2016/11/28 22:35:49 Done.
+
namespace chromeos {
class ForwardingServer;
@@ -35,6 +39,7 @@ class HTTPSForwarder {
private:
std::string ssl_host_;
+ std::unique_ptr<net::ScopedTestRoot> test_root_;
std::unique_ptr<ForwardingServer> forwarding_server_;
DISALLOW_COPY_AND_ASSIGN(HTTPSForwarder);

Powered by Google App Engine
This is Rietveld 408576698