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

Unified Diff: storage/browser/storage_browser_export.h

Issue 1429333002: Deprecate STORAGE_EXPORT_PRIVATE macro. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix rebase error Created 5 years, 1 month 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
« no previous file with comments | « storage/browser/quota/storage_monitor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/storage_browser_export.h
diff --git a/storage/browser/storage_browser_export.h b/storage/browser/storage_browser_export.h
index c6d6a37a812ad1391999212dbfe68dafe0f1287d..bad5e419c4796eead98b2cd91b18832340c5c7fc 100644
--- a/storage/browser/storage_browser_export.h
+++ b/storage/browser/storage_browser_export.h
@@ -10,25 +10,20 @@
#if defined(STORAGE_BROWSER_IMPLEMENTATION)
#define STORAGE_EXPORT __declspec(dllexport)
-#define STORAGE_EXPORT_PRIVATE __declspec(dllexport)
#else
#define STORAGE_EXPORT __declspec(dllimport)
-#define STORAGE_EXPORT_PRIVATE __declspec(dllimport)
#endif // defined(STORAGE_BROWSER_IMPLEMENTATION)
#else // defined(WIN32)
#if defined(STORAGE_BROWSER_IMPLEMENTATION)
#define STORAGE_EXPORT __attribute__((visibility("default")))
-#define STORAGE_EXPORT_PRIVATE __attribute__((visibility("default")))
#else
#define STORAGE_EXPORT
-#define STORAGE_EXPORT_PRIVATE
#endif
#endif
#else // defined(COMPONENT_BUILD)
#define STORAGE_EXPORT
-#define STORAGE_EXPORT_PRIVATE
#endif
#endif // STORAGE_BROWSER_STORAGE_BROWSER_EXPORT_H__
« no previous file with comments | « storage/browser/quota/storage_monitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698