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

Unified Diff: base/ref_counted.h

Issue 6725001: Base: First pass at having base.dll: definition of (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 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: base/ref_counted.h
===================================================================
--- base/ref_counted.h (revision 78949)
+++ base/ref_counted.h (working copy)
@@ -7,13 +7,14 @@
#pragma once
#include "base/atomic_ref_count.h"
+#include "base/base_api.h"
#include "base/threading/thread_collision_warner.h"
namespace base {
namespace subtle {
-class RefCountedBase {
+class BASE_API RefCountedBase {
public:
static bool ImplementsThreadSafeReferenceCounting() { return false; }
@@ -39,7 +40,7 @@
DISALLOW_COPY_AND_ASSIGN(RefCountedBase);
};
-class RefCountedThreadSafeBase {
+class BASE_API RefCountedThreadSafeBase {
public:
static bool ImplementsThreadSafeReferenceCounting() { return true; }

Powered by Google App Engine
This is Rietveld 408576698