Title: [88376] trunk/Source/_javascript_Core
Revision
88376
Author
kev...@webkit.org
Date
2011-06-08 13:04:37 -0700 (Wed, 08 Jun 2011)

Log Message

2011-06-08  Kevin Ollivier  <kev...@theolliviers.com>

        Reviewed by Eric Seidel.

        Add export macros to profiler headers.
        https://bugs.webkit.org/show_bug.cgi?id=27551

        * profiler/Profiler.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (88375 => 88376)


--- trunk/Source/_javascript_Core/ChangeLog	2011-06-08 19:54:10 UTC (rev 88375)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-06-08 20:04:37 UTC (rev 88376)
@@ -2,6 +2,15 @@
 
         Reviewed by Eric Seidel.
 
+        Add export macros to profiler headers.
+        https://bugs.webkit.org/show_bug.cgi?id=27551
+
+        * profiler/Profiler.h:
+
+2011-06-08  Kevin Ollivier  <kev...@theolliviers.com>
+
+        Reviewed by Eric Seidel.
+
         Add export symbols to parser headers.
         https://bugs.webkit.org/show_bug.cgi?id=27551
 

Modified: trunk/Source/_javascript_Core/profiler/Profiler.h (88375 => 88376)


--- trunk/Source/_javascript_Core/profiler/Profiler.h	2011-06-08 19:54:10 UTC (rev 88375)
+++ trunk/Source/_javascript_Core/profiler/Profiler.h	2011-06-08 20:04:37 UTC (rev 88376)
@@ -53,11 +53,11 @@
             return &s_sharedEnabledProfilerReference;
         }
 
-        static Profiler* profiler(); 
+        JS_EXPORT_PRIVATE static Profiler* profiler(); 
         static CallIdentifier createCallIdentifier(ExecState* exec, JSValue, const UString& sourceURL, int lineNumber);
 
-        void startProfiling(ExecState*, const UString& title);
-        PassRefPtr<Profile> stopProfiling(ExecState*, const UString& title);
+        JS_EXPORT_PRIVATE void startProfiling(ExecState*, const UString& title);
+        JS_EXPORT_PRIVATE PassRefPtr<Profile> stopProfiling(ExecState*, const UString& title);
         void stopProfiling(JSGlobalObject*);
 
         void willExecute(ExecState* callerCallFrame, JSValue function);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to