Changeset 211172 in webkit
- Timestamp:
- Jan 25, 2017, 3:20:45 PM (9 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r211165 r211172 1 2017-01-25 Andy Estes <aestes@apple.com> 2 3 Use #pragma once in a few places 4 https://bugs.webkit.org/show_bug.cgi?id=167435 5 6 Reviewed by Alex Christensen. 7 8 * UIProcess/PageClient.h: 9 * UIProcess/ios/PageClientImplIOS.h: 10 * WebProcess/WebCoreSupport/ios/WebQuickLookHandleClient.h: 11 1 12 2017-01-25 Andy Estes <aestes@apple.com> 2 13 -
trunk/Source/WebKit2/UIProcess/PageClient.h
r211165 r211172 24 24 */ 25 25 26 #ifndef PageClient_h 27 #define PageClient_h 26 #pragma once 28 27 29 28 #include "ShareableBitmap.h" … … 385 384 386 385 } // namespace WebKit 387 388 #endif // PageClient_h -
trunk/Source/WebKit2/UIProcess/ios/PageClientImplIOS.h
r211165 r211172 24 24 */ 25 25 26 #ifndef PageClientImplIOS_h 27 #define PageClientImplIOS_h 26 #pragma once 28 27 29 28 #if PLATFORM(IOS) … … 208 207 209 208 #endif // PLATFORM(IOS) 210 211 #endif // PageClientImplIOS_h -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/ios/WebQuickLookHandleClient.h
r211165 r211172 24 24 */ 25 25 26 #ifndef WebQuickLookHandleClient_h 27 #define WebQuickLookHandleClient_h 26 #pragma once 28 27 29 28 #if USE(QUICK_LOOK) … … 68 67 69 68 #endif // USE(QUICK_LOOK) 70 71 #endif // WebQuickLookHandleClient_h
Note:
See TracChangeset
for help on using the changeset viewer.