commit | e56cc68b9c09e234cbeeec86a330fc17b6b68509 | [log] [tgz] |
---|---|---|
author | Victor Costan <[email protected]> | Thu Dec 27 01:53:46 2018 |
committer | Commit Bot <[email protected]> | Thu Dec 27 01:53:46 2018 |
tree | d21a7237a59a832882e3910645c5fe69543f1c40 | |
parent | c205e8c8c1124d1a71d78fb0cf0fb3f3ff1c2b51 [diff] [blame] |
sql: Switch from custom macro to COMPONENT_EXPORT. TBR: jsbell Change-Id: I5b998afa31810577e0bfd9d4d29ef9d462bce5b7 Reviewed-on: https://chromium-review.googlesource.com/c/1390332 Reviewed-by: Victor Costan <[email protected]> Commit-Queue: Victor Costan <[email protected]> Cr-Commit-Position: refs/heads/master@{#618989}
diff --git a/sql/initialization.h b/sql/initialization.h index 98a625a..01eca433 100644 --- a/sql/initialization.h +++ b/sql/initialization.h
@@ -5,7 +5,7 @@ #ifndef SQL_INITIALIZATION_H_ #define SQL_INITIALIZATION_H_ -#include "sql/sql_export.h" +#include "base/component_export.h" namespace sql { @@ -16,7 +16,7 @@ // // The function is exposed for other components that use SQLite indirectly, such // as Blink. -SQL_EXPORT void EnsureSqliteInitialized(); +COMPONENT_EXPORT(SQL) void EnsureSqliteInitialized(); } // namespace sql