Title: [91134] trunk/Source
- Revision
- 91134
- Author
- [email protected]
- Date
- 2011-07-15 17:16:21 -0700 (Fri, 15 Jul 2011)
Log Message
Rename applicationIsSolarWalk() to applicationIsSolarWalkMac().
https://bugs.webkit.org/show_bug.cgi?id=64641
Reviewed by Brian Weinstein.
Source/WebCore:
* WebCore.exp.in: Update to new symbol.
* platform/RuntimeApplicationChecks.cpp:
(WebCore::applicationIsSolarWalkMac): Renamed from applicationIsSolarWalk.
* platform/RuntimeApplicationChecks.h: Ditto.
Source/WebKit/mac:
* WebView/WebView.mm:
(needsSolarWalkQuirksScript): Call applicationIsSolarWalkMac().
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (91133 => 91134)
--- trunk/Source/WebCore/ChangeLog 2011-07-16 00:03:21 UTC (rev 91133)
+++ trunk/Source/WebCore/ChangeLog 2011-07-16 00:16:21 UTC (rev 91134)
@@ -1,3 +1,15 @@
+2011-07-15 Andy Estes <[email protected]>
+
+ Rename applicationIsSolarWalk() to applicationIsSolarWalkMac().
+ https://bugs.webkit.org/show_bug.cgi?id=64641
+
+ Reviewed by Brian Weinstein.
+
+ * WebCore.exp.in: Update to new symbol.
+ * platform/RuntimeApplicationChecks.cpp:
+ (WebCore::applicationIsSolarWalkMac): Renamed from applicationIsSolarWalk.
+ * platform/RuntimeApplicationChecks.h: Ditto.
+
2011-07-15 Mark Rowe <[email protected]>
Fix the build.
Modified: trunk/Source/WebCore/WebCore.exp.in (91133 => 91134)
--- trunk/Source/WebCore/WebCore.exp.in 2011-07-16 00:03:21 UTC (rev 91133)
+++ trunk/Source/WebCore/WebCore.exp.in 2011-07-16 00:16:21 UTC (rev 91134)
@@ -578,7 +578,6 @@
__ZN7WebCore21setPlatformStrategiesEPNS_18PlatformStrategiesE
__ZN7WebCore22ScriptExecutionContext26canSuspendActiveDOMObjectsEv
__ZN7WebCore22applicationIsAppleMailEv
-__ZN7WebCore22applicationIsSolarWalkEv
__ZN7WebCore22contextMenuItemTagBoldEv
__ZN7WebCore22counterValueForElementEPNS_7ElementE
__ZN7WebCore22createFragmentFromTextEPNS_5RangeERKN3WTF6StringE
@@ -610,6 +609,7 @@
__ZN7WebCore25PluginMainThreadScheduler16unregisterPluginEP4_NPP
__ZN7WebCore25PluginMainThreadScheduler9schedulerEv
__ZN7WebCore25addLanguageChangeObserverEPvPFvS0_E
+__ZN7WebCore25applicationIsSolarWalkMacEv
__ZN7WebCore25contextMenuItemTagOutlineEv
__ZN7WebCore26CSSMutableStyleDeclarationC1Ev
__ZN7WebCore26UserTypingGestureIndicator27processingUserTypingGestureEv
Modified: trunk/Source/WebCore/platform/RuntimeApplicationChecks.cpp (91133 => 91134)
--- trunk/Source/WebCore/platform/RuntimeApplicationChecks.cpp 2011-07-16 00:03:21 UTC (rev 91133)
+++ trunk/Source/WebCore/platform/RuntimeApplicationChecks.cpp 2011-07-16 00:16:21 UTC (rev 91134)
@@ -102,7 +102,7 @@
return isAperture;
}
-bool applicationIsSolarWalk()
+bool applicationIsSolarWalkMac()
{
static bool isSolarWalk = mainBundleIsEqualTo("com.vitotechnology.SolarWalkMac");
return isSolarWalk;
Modified: trunk/Source/WebCore/platform/RuntimeApplicationChecks.h (91133 => 91134)
--- trunk/Source/WebCore/platform/RuntimeApplicationChecks.h 2011-07-16 00:03:21 UTC (rev 91133)
+++ trunk/Source/WebCore/platform/RuntimeApplicationChecks.h 2011-07-16 00:16:21 UTC (rev 91134)
@@ -36,7 +36,7 @@
bool applicationIsMicrosoftMyDay();
bool applicationIsMicrosoftOutlook();
bool applicationIsSafari();
-bool applicationIsSolarWalk();
+bool applicationIsSolarWalkMac();
} // namespace WebCore
Modified: trunk/Source/WebKit/mac/ChangeLog (91133 => 91134)
--- trunk/Source/WebKit/mac/ChangeLog 2011-07-16 00:03:21 UTC (rev 91133)
+++ trunk/Source/WebKit/mac/ChangeLog 2011-07-16 00:16:21 UTC (rev 91134)
@@ -1,3 +1,13 @@
+2011-07-15 Andy Estes <[email protected]>
+
+ Rename applicationIsSolarWalk() to applicationIsSolarWalkMac().
+ https://bugs.webkit.org/show_bug.cgi?id=64641
+
+ Reviewed by Brian Weinstein.
+
+ * WebView/WebView.mm:
+ (needsSolarWalkQuirksScript): Call applicationIsSolarWalkMac().
+
2011-07-15 Dan Bernstein <[email protected]>
REGRESSION: Mouse cursor doesn’t hide when full screen video HUD hides
Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (91133 => 91134)
--- trunk/Source/WebKit/mac/WebView/WebView.mm 2011-07-16 00:03:21 UTC (rev 91133)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm 2011-07-16 00:16:21 UTC (rev 91134)
@@ -670,7 +670,7 @@
static bool needsSolarWalkQuirksScript()
{
static bool isSolarWalkNeedingQuirksScript = !WebKitLinkedOnOrAfter(WEBKIT_FIRST_VERSION_WITH_HTML5_PARSER)
- && applicationIsSolarWalk();
+ && applicationIsSolarWalkMac();
return isSolarWalkNeedingQuirksScript;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes