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

Unified Diff: net/base/ssl_config_service_defaults.h

Issue 3412016: FBTF: Move a bunch of code to the headers and remove includes. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Rebase + fixed windows issues locally Created 10 years, 3 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
« no previous file with comments | « net/base/ssl_config_service.cc ('k') | net/base/ssl_config_service_defaults.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/ssl_config_service_defaults.h
diff --git a/net/base/ssl_config_service_defaults.h b/net/base/ssl_config_service_defaults.h
index 58d0f2dd2bed623a8f9a60ffb970e65de5cf56a0..6d96a44291f852d3673a79ac7b157477ff7c0380 100644
--- a/net/base/ssl_config_service_defaults.h
+++ b/net/base/ssl_config_service_defaults.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -15,16 +15,13 @@ namespace net {
// implementation of SSLConfigService yet.
class SSLConfigServiceDefaults : public SSLConfigService {
public:
- SSLConfigServiceDefaults() {}
+ SSLConfigServiceDefaults();
// Store default SSL config settings in |config|.
- virtual void GetSSLConfig(SSLConfig* config) {
- *config = default_config_;
- SetSSLConfigFlags(config);
- }
+ virtual void GetSSLConfig(SSLConfig* config);
private:
- virtual ~SSLConfigServiceDefaults() {}
+ virtual ~SSLConfigServiceDefaults();
// Default value of prefs.
const SSLConfig default_config_;
« no previous file with comments | « net/base/ssl_config_service.cc ('k') | net/base/ssl_config_service_defaults.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698