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

Unified Diff: content/browser/ssl/ssl_host_state.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: update copyright headers, merge Created 9 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
Index: content/browser/ssl/ssl_host_state.h
diff --git a/content/browser/ssl/ssl_host_state.h b/content/browser/ssl/ssl_host_state.h
index 943f44ee2647b098360ff3566c3d3476905cf5eb..7bceaa7c893e946e74504a051c6388a42c86678c 100644
--- a/content/browser/ssl/ssl_host_state.h
+++ b/content/browser/ssl/ssl_host_state.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -10,8 +10,10 @@
#include <map>
#include <set>
+#include "base/compiler_specific.h"
#include "base/basictypes.h"
#include "base/threading/non_thread_safe.h"
+#include "content/common/content_export.h"
#include "googleurl/src/gurl.h"
#include "net/base/x509_certificate.h"
@@ -23,7 +25,8 @@
// from the SSLManager because this state is shared across many navigation
// controllers.
-class SSLHostState : public base::NonThreadSafe {
+class CONTENT_EXPORT SSLHostState
+ : NON_EXPORTED_BASE(public base::NonThreadSafe) {
public:
SSLHostState();
~SSLHostState();

Powered by Google App Engine
This is Rietveld 408576698