Title: [162465] trunk/Source/WebKit2
- Revision
- 162465
- Author
- [email protected]
- Date
- 2014-01-21 12:32:14 -0800 (Tue, 21 Jan 2014)
Log Message
Trivial Session API cleanup.
https://bugs.webkit.org/show_bug.cgi?id=127356
Patch by Martin Hock <[email protected]> on 2014-01-21
Reviewed by Alexey Proskuryakov.
* UIProcess/API/C/WKSessionRef.cpp:
(WKSessionIsEphemeral):
* UIProcess/API/C/WKSessionRef.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (162464 => 162465)
--- trunk/Source/WebKit2/ChangeLog 2014-01-21 20:26:37 UTC (rev 162464)
+++ trunk/Source/WebKit2/ChangeLog 2014-01-21 20:32:14 UTC (rev 162465)
@@ -1,3 +1,14 @@
+2014-01-21 Martin Hock <[email protected]>
+
+ Trivial Session API cleanup.
+ https://bugs.webkit.org/show_bug.cgi?id=127356
+
+ Reviewed by Alexey Proskuryakov.
+
+ * UIProcess/API/C/WKSessionRef.cpp:
+ (WKSessionIsEphemeral):
+ * UIProcess/API/C/WKSessionRef.h:
+
2014-01-16 Simon Fraser <[email protected]>
Log an error for a common cause of WebProcess early launch crashing in misconfigured development builds
Modified: trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.cpp (162464 => 162465)
--- trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.cpp 2014-01-21 20:26:37 UTC (rev 162464)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.cpp 2014-01-21 20:32:14 UTC (rev 162465)
@@ -36,7 +36,7 @@
return toAPI(API::Session::APIType);
}
-bool WKSessionGetEphemeral(WKSessionRef sessionRef)
+bool WKSessionIsEphemeral(WKSessionRef sessionRef)
{
return toAPI(toImpl(sessionRef)->isEphemeral());
}
Modified: trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.h (162464 => 162465)
--- trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.h 2014-01-21 20:26:37 UTC (rev 162464)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.h 2014-01-21 20:32:14 UTC (rev 162465)
@@ -34,7 +34,7 @@
WK_EXPORT WKTypeID WKSessionGetTypeID();
-WK_EXPORT bool WKSessionGetEphemeral(WKSessionRef session);
+WK_EXPORT bool WKSessionIsEphemeral(WKSessionRef session);
#ifdef __cplusplus
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes