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

Side by Side Diff: Source/build/mac/Prefix.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/bindings/tests/results/V8TestTypedefs.cpp ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2013 Apple Inc. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2013 Apple Inc.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #ifdef __cplusplus 50 #ifdef __cplusplus
51 #include <ciso646> 51 #include <ciso646>
52 52
53 #if defined(_LIBCPP_VERSION) 53 #if defined(_LIBCPP_VERSION)
54 54
55 // Add work around for a bug in libc++ that caused standard heap 55 // Add work around for a bug in libc++ that caused standard heap
56 // APIs to not compile <rdar://problem/10858112>. 56 // APIs to not compile <rdar://problem/10858112>.
57 57
58 #include <type_traits> 58 #include <type_traits>
59 59
60 namespace WebCore { 60 namespace blink {
61 class TimerHeapReference; 61 class TimerHeapReference;
62 } 62 }
63 63
64 _LIBCPP_BEGIN_NAMESPACE_STD 64 _LIBCPP_BEGIN_NAMESPACE_STD
65 65
66 inline _LIBCPP_INLINE_VISIBILITY 66 inline _LIBCPP_INLINE_VISIBILITY
67 const WebCore::TimerHeapReference& move(const WebCore::TimerHeapReference& t) 67 const blink::TimerHeapReference& move(const blink::TimerHeapReference& t)
68 { 68 {
69 return t; 69 return t;
70 } 70 }
71 71
72 _LIBCPP_END_NAMESPACE_STD 72 _LIBCPP_END_NAMESPACE_STD
73 73
74 #endif // defined(_LIBCPP_VERSION) 74 #endif // defined(_LIBCPP_VERSION)
75 75
76 #include <algorithm> 76 #include <algorithm>
77 #include <cstddef> 77 #include <cstddef>
(...skipping 18 matching lines...) Expand all
96 #endif 96 #endif
97 97
98 /* When C++ exceptions are disabled, the C++ library defines |try| and |catch| 98 /* When C++ exceptions are disabled, the C++ library defines |try| and |catch|
99 * to allow C++ code that expects exceptions to build. These definitions 99 * to allow C++ code that expects exceptions to build. These definitions
100 * interfere with Objective-C++ uses of Objective-C exception handlers, which 100 * interfere with Objective-C++ uses of Objective-C exception handlers, which
101 * use |@try| and |@catch|. As a workaround, undefine these macros. */ 101 * use |@try| and |@catch|. As a workaround, undefine these macros. */
102 #ifdef __OBJC__ 102 #ifdef __OBJC__
103 #undef try 103 #undef try
104 #undef catch 104 #undef catch
105 #endif 105 #endif
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestTypedefs.cpp ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698