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

Unified Diff: Source/platform/mac/BlockExceptions.h

Issue 67433002: Move Mac related files to Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Also export BlockExceptions Created 7 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 | « Source/platform/blink_platform.gypi ('k') | Source/platform/mac/BlockExceptions.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/mac/BlockExceptions.h
diff --git a/Source/core/platform/mac/BlockExceptions.h b/Source/platform/mac/BlockExceptions.h
similarity index 92%
rename from Source/core/platform/mac/BlockExceptions.h
rename to Source/platform/mac/BlockExceptions.h
index 3968a55cb047119fe6dcd89be5d785739c7c7cc8..10f80b2e48a4d9f01ebf0952f41cbb3515e1a7b0 100644
--- a/Source/core/platform/mac/BlockExceptions.h
+++ b/Source/platform/mac/BlockExceptions.h
@@ -23,10 +23,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#import <platform/PlatformExport.h>
#import <Foundation/NSException.h>
#import <wtf/Assertions.h>
-NO_RETURN_DUE_TO_ASSERT void ReportBlockedObjCException(NSException *);
+PLATFORM_EXPORT NO_RETURN_DUE_TO_ASSERT void ReportBlockedObjCException(NSException *);
#define BEGIN_BLOCK_OBJC_EXCEPTIONS @try {
#define END_BLOCK_OBJC_EXCEPTIONS } @catch(NSException *localException) { ReportBlockedObjCException(localException); }
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/platform/mac/BlockExceptions.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698