diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-12 01:14:23 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-12 01:14:23 +0000 |
commit | 601dc6a19fa7defc9f9480c59211a810425d6dd8 (patch) | |
tree | 1e07d9173d37addb1f270e9aa00301adba0a469b /sql/connection.h | |
parent | 7a6ab04c0a750bc6a47a76e91f375581506db4da (diff) | |
download | chromium_src-601dc6a19fa7defc9f9480c59211a810425d6dd8.zip chromium_src-601dc6a19fa7defc9f9480c59211a810425d6dd8.tar.gz chromium_src-601dc6a19fa7defc9f9480c59211a810425d6dd8.tar.bz2 |
export StatementRef
R=tony@chromium.org
BUG=103987
TEST=sql_unittests compiles on the webkit win shared builder
Review URL: http://codereview.chromium.org/8538031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109753 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sql/connection.h')
-rw-r--r-- | sql/connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/connection.h b/sql/connection.h index 5446c0c..2467ff8d 100644 --- a/sql/connection.h +++ b/sql/connection.h @@ -294,7 +294,7 @@ class SQL_EXPORT Connection { // // The Connection may revoke a StatementRef in some error cases, so callers // should always check validity before using. - class StatementRef : public base::RefCounted<StatementRef> { + class SQL_EXPORT StatementRef : public base::RefCounted<StatementRef> { public: // Default constructor initializes to an invalid statement. StatementRef(); |