Title: [163565] trunk/Source/WebCore
Revision
163565
Author
[email protected]
Date
2014-02-06 15:06:10 -0800 (Thu, 06 Feb 2014)

Log Message

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

Patch by Joseph Pecoraro <[email protected]> on 2014-02-06
Reviewed by Timothy Hatcher.

* inspector/InspectorConsoleInstrumentation.h:
(WebCore::InspectorInstrumentation::addProfile):
* inspector/InspectorInstrumentation.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163564 => 163565)


--- trunk/Source/WebCore/ChangeLog	2014-02-06 22:40:26 UTC (rev 163564)
+++ trunk/Source/WebCore/ChangeLog	2014-02-06 23:06:10 UTC (rev 163565)
@@ -1,3 +1,14 @@
+2014-02-06  Joseph Pecoraro  <[email protected]>
+
+        Convert a parameter to PassRefPtr
+        https://bugs.webkit.org/show_bug.cgi?id=128327
+
+        Reviewed by Timothy Hatcher.
+
+        * inspector/InspectorConsoleInstrumentation.h:
+        (WebCore::InspectorInstrumentation::addProfile):
+        * inspector/InspectorInstrumentation.h:
+
 2014-01-30  Oliver Hunt  <[email protected]>
 
         Push DOM attributes into the prototype chain

Modified: trunk/Source/WebCore/inspector/InspectorConsoleInstrumentation.h (163564 => 163565)


--- trunk/Source/WebCore/inspector/InspectorConsoleInstrumentation.h	2014-02-06 22:40:26 UTC (rev 163564)
+++ trunk/Source/WebCore/inspector/InspectorConsoleInstrumentation.h	2014-02-06 23:06:10 UTC (rev 163565)
@@ -187,7 +187,7 @@
 #endif
 }
 
-inline void InspectorInstrumentation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
+inline void InspectorInstrumentation::addProfile(Page* page, PassRefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
 {
 #if ENABLE(INSPECTOR)
     if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))

Modified: trunk/Source/WebCore/inspector/InspectorInstrumentation.h (163564 => 163565)


--- trunk/Source/WebCore/inspector/InspectorInstrumentation.h	2014-02-06 22:40:26 UTC (rev 163564)
+++ trunk/Source/WebCore/inspector/InspectorInstrumentation.h	2014-02-06 23:06:10 UTC (rev 163565)
@@ -222,7 +222,7 @@
     static void didFireAnimationFrame(const InspectorInstrumentationCookie&);
 
     static void addStartProfilingMessageToConsole(Page*, const String& title, unsigned lineNumber, unsigned columnNumber, const String& sourceURL);
-    static void addProfile(Page*, RefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
+    static void addProfile(Page*, PassRefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
     static String getCurrentUserInitiatedProfileName(Page*, bool incrementProfileNumber);
     static bool profilerEnabled(Page*);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to