Changeset 205403 in webkit


Ignore:
Timestamp:
Sep 3, 2016 7:42:18 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Move WebKit2 WebInspector files to #pragma once
https://bugs.webkit.org/show_bug.cgi?id=161550

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-09-03
Reviewed by Darin Adler.

  • UIProcess/InspectorServer/WebInspectorServer.h:
  • UIProcess/WebInspectorProxy.h:
  • UIProcess/gtk/WebInspectorClientGtk.h:
  • WebProcess/WebCoreSupport/WebInspectorClient.h:
  • WebProcess/WebPage/WebInspector.h:
  • WebProcess/WebPage/WebInspectorFrontendAPIDispatcher.h:
  • WebProcess/WebPage/WebInspectorUI.h:
Location:
trunk/Source/WebKit2
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r205397 r205403  
     12016-09-03  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Move WebKit2 WebInspector files to #pragma once
     4        https://bugs.webkit.org/show_bug.cgi?id=161550
     5
     6        Reviewed by Darin Adler.
     7
     8        * UIProcess/InspectorServer/WebInspectorServer.h:
     9        * UIProcess/WebInspectorProxy.h:
     10        * UIProcess/gtk/WebInspectorClientGtk.h:
     11        * WebProcess/WebCoreSupport/WebInspectorClient.h:
     12        * WebProcess/WebPage/WebInspector.h:
     13        * WebProcess/WebPage/WebInspectorFrontendAPIDispatcher.h:
     14        * WebProcess/WebPage/WebInspectorUI.h:
     15
    1162016-09-02  Michael Catanzaro  <mcatanzaro@igalia.com>
    217
  • trunk/Source/WebKit2/UIProcess/InspectorServer/WebInspectorServer.h

    r179409 r205403  
    2525 */
    2626
    27 #ifndef WebInspectorServer_h
    28 #define WebInspectorServer_h
     27#pragma once
    2928
    3029#if ENABLE(INSPECTOR_SERVER)
     
    7675
    7776#endif // ENABLE(INSPECTOR_SERVER)
    78 
    79 #endif // WebInspectorServer_h
  • trunk/Source/WebKit2/UIProcess/WebInspectorProxy.h

    r205370 r205403  
    2525 */
    2626
    27 #ifndef WebInspectorProxy_h
    28 #define WebInspectorProxy_h
     27#pragma once
    2928
    3029#include "APIObject.h"
     
    244243    bool m_canAttach { false };
    245244    bool m_isProfilingPage { false };
    246     bool m_showMessageSent { false };   
     245    bool m_showMessageSent { false };
    247246    bool m_ignoreFirstBringToFront { false };
    248247    bool m_elementSelectionActive { false };
     
    276275
    277276} // namespace WebKit
    278 
    279 #endif // WebInspectorProxy_h
  • trunk/Source/WebKit2/UIProcess/gtk/WebInspectorClientGtk.h

    r174105 r205403  
    2424 */
    2525
    26 #ifndef WebInspectorClientGtk_h
    27 #define WebInspectorClientGtk_h
     26#pragma once
    2827
    2928#include "APIClient.h"
    3029#include "WKInspectorClientGtk.h"
    31 
    3230#include <wtf/text/WTFString.h>
    3331
     
    5856
    5957} // namespace WebKit
    60 
    61 #endif // WebInspectorClientGtk_h
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebInspectorClient.h

    r201224 r205403  
    2424 */
    2525
    26 #ifndef WebInspectorClient_h
    27 #define WebInspectorClient_h
     26#pragma once
    2827
    2928#include <WebCore/InspectorClient.h>
     
    8988
    9089} // namespace WebKit
    91 
    92 #endif // WebInspectorClient_h
  • trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.h

    r204985 r205403  
    2424 */
    2525
    26 #ifndef WebInspector_h
    27 #define WebInspector_h
     26#pragma once
    2827
    2928#include "APIObject.h"
     
    118117
    119118} // namespace WebKit
    120 
    121 #endif // WebInspector_h
  • trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorFrontendAPIDispatcher.h

    r200276 r205403  
    2424 */
    2525
    26 #ifndef WebInspectorFrontendAPIDispatcher_h
    27 #define WebInspectorFrontendAPIDispatcher_h
     26#pragma once
    2827
    2928#include <wtf/Deque.h>
     
    6059
    6160} // namespace WebKit
    62 
    63 #endif // WebInspectorFrontendAPIDispatcher_h
  • trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorUI.h

    r205369 r205403  
    2424 */
    2525
    26 #ifndef WebInspectorUI_h
    27 #define WebInspectorUI_h
     26#pragma once
    2827
    2928#include "Connection.h"
     
    133132
    134133} // namespace WebKit
    135 
    136 #endif // WebInspectorUI_h
Note: See TracChangeset for help on using the changeset viewer.