Changeset 163565 in webkit


Ignore:
Timestamp:
Feb 6, 2014 3:06:10 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Convert a parameter to PassRefPtr
https://bugs.webkit.org/show_bug.cgi?id=128327

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-02-06
Reviewed by Timothy Hatcher.

  • inspector/InspectorConsoleInstrumentation.h:

(WebCore::InspectorInstrumentation::addProfile):

  • inspector/InspectorInstrumentation.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r163562 r163565  
     12014-02-06  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Convert a parameter to PassRefPtr
     4        https://bugs.webkit.org/show_bug.cgi?id=128327
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * inspector/InspectorConsoleInstrumentation.h:
     9        (WebCore::InspectorInstrumentation::addProfile):
     10        * inspector/InspectorInstrumentation.h:
     11
    1122014-01-30  Oliver Hunt  <oliver@apple.com>
    213
  • trunk/Source/WebCore/inspector/InspectorConsoleInstrumentation.h

    r163024 r163565  
    188188}
    189189
    190 inline void InspectorInstrumentation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
     190inline void InspectorInstrumentation::addProfile(Page* page, PassRefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
    191191{
    192192#if ENABLE(INSPECTOR)
  • trunk/Source/WebCore/inspector/InspectorInstrumentation.h

    r163139 r163565  
    223223
    224224    static void addStartProfilingMessageToConsole(Page*, const String& title, unsigned lineNumber, unsigned columnNumber, const String& sourceURL);
    225     static void addProfile(Page*, RefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
     225    static void addProfile(Page*, PassRefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
    226226    static String getCurrentUserInitiatedProfileName(Page*, bool incrementProfileNumber);
    227227    static bool profilerEnabled(Page*);
Note: See TracChangeset for help on using the changeset viewer.