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

Unified Diff: net/base/ssl_config_service.h

Issue 7529043: Rename NET_API to NET_EXPORT, and rename NET_TEST to NET_EXPORT_PRIVATE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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/base/ssl_config_service.h
===================================================================
--- net/base/ssl_config_service.h (revision 95949)
+++ net/base/ssl_config_service.h (working copy)
@@ -12,13 +12,13 @@
#include "base/memory/ref_counted.h"
#include "base/observer_list.h"
#include "base/string_piece.h"
-#include "net/base/net_api.h"
+#include "net/base/net_export.h"
#include "net/base/x509_certificate.h"
namespace net {
// A collection of SSL-related configuration settings.
-struct NET_API SSLConfig {
+struct NET_EXPORT SSLConfig {
// Default to revocation checking.
// Default to SSL 3.0 on and TLS 1.0 on.
SSLConfig();
@@ -72,7 +72,7 @@
// TODO(wtc): move the following members to a new SSLParams structure. They
// are not SSL configuration settings.
- struct NET_API CertAndStatus {
+ struct NET_EXPORT CertAndStatus {
CertAndStatus();
~CertAndStatus();
@@ -109,11 +109,11 @@
// does not cover setting the SSL configuration, as on some systems, the
// SSLConfigService objects may not have direct access to the configuration, or
// live longer than the configuration preferences.
-class NET_API SSLConfigService
+class NET_EXPORT SSLConfigService
: public base::RefCountedThreadSafe<SSLConfigService> {
public:
// Observer is notified when SSL config settings have changed.
- class NET_API Observer {
+ class NET_EXPORT Observer {
public:
// Notify observers if SSL settings have changed. We don't check all of the
// data in SSLConfig, just those that qualify as a user config change.

Powered by Google App Engine
This is Rietveld 408576698