Title: [183506] trunk
Revision
183506
Author
commit-qu...@webkit.org
Date
2015-04-28 13:45:08 -0700 (Tue, 28 Apr 2015)

Log Message

Fix common typo "targetting" => "targeting"
https://bugs.webkit.org/show_bug.cgi?id=144349

Patch by Joseph Pecoraro <pecor...@apple.com> on 2015-04-28
Reviewed by Daniel Bates.

Source/_javascript_Core:

* bytecode/ExecutionCounter.h:

Source/WebKit/mac:

* Plugins/Hosted/NetscapePluginInstanceProxy.mm:
(WebKit::NetscapePluginInstanceProxy::loadRequest):
* Plugins/WebNetscapePluginView.mm:
(-[WebNetscapePluginView loadRequest:inTarget:withNotifyData:sendNotification:]):
* WebView/WebPolicyDelegate.h:

Source/WebKit/win:

* Interfaces/IWebPolicyDelegate.idl:

Tools:

* Scripts/webkitdirs.pm:
(execMacWebKitAppForDebugging):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (183505 => 183506)


--- trunk/Source/_javascript_Core/ChangeLog	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-04-28 20:45:08 UTC (rev 183506)
@@ -1,3 +1,12 @@
+2015-04-28  Joseph Pecoraro  <pecor...@apple.com>
+
+        Fix common typo "targetting" => "targeting"
+        https://bugs.webkit.org/show_bug.cgi?id=144349
+
+        Reviewed by Daniel Bates.
+
+        * bytecode/ExecutionCounter.h:
+
 2015-04-28  Yusuke Suzuki  <utatane....@gmail.com>
 
         Update the features.json for WeakSet, WeakMap, Template literals, Tagged templates

Modified: trunk/Source/_javascript_Core/bytecode/ExecutionCounter.h (183505 => 183506)


--- trunk/Source/_javascript_Core/bytecode/ExecutionCounter.h	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/_javascript_Core/bytecode/ExecutionCounter.h	2015-04-28 20:45:08 UTC (rev 183506)
@@ -110,7 +110,7 @@
     // m_counter.
     float m_totalCount;
 
-    // This is the threshold we were originally targetting, without any correction for
+    // This is the threshold we were originally targeting, without any correction for
     // the memory usage heuristics.
     int32_t m_activeThreshold;
 };

Modified: trunk/Source/WebKit/mac/ChangeLog (183505 => 183506)


--- trunk/Source/WebKit/mac/ChangeLog	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/WebKit/mac/ChangeLog	2015-04-28 20:45:08 UTC (rev 183506)
@@ -1,3 +1,16 @@
+2015-04-28  Joseph Pecoraro  <pecor...@apple.com>
+
+        Fix common typo "targetting" => "targeting"
+        https://bugs.webkit.org/show_bug.cgi?id=144349
+
+        Reviewed by Daniel Bates.
+
+        * Plugins/Hosted/NetscapePluginInstanceProxy.mm:
+        (WebKit::NetscapePluginInstanceProxy::loadRequest):
+        * Plugins/WebNetscapePluginView.mm:
+        (-[WebNetscapePluginView loadRequest:inTarget:withNotifyData:sendNotification:]):
+        * WebView/WebPolicyDelegate.h:
+
 2015-04-28  Brady Eidson  <beid...@apple.com>
 
         Consolidate most "frame load" arguments into FrameLoadRequest.

Modified: trunk/Source/WebKit/mac/Plugins/Hosted/NetscapePluginInstanceProxy.mm (183505 => 183506)


--- trunk/Source/WebKit/mac/Plugins/Hosted/NetscapePluginInstanceProxy.mm	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/WebKit/mac/Plugins/Hosted/NetscapePluginInstanceProxy.mm	2015-04-28 20:45:08 UTC (rev 183506)
@@ -790,7 +790,7 @@
     requestID = ++m_currentURLRequestID;
         
     if (cTarget || JSString) {
-        // Make when targetting a frame or evaluating a JS string, perform the request after a delay because we don't
+        // Make when targeting a frame or evaluating a JS string, perform the request after a delay because we don't
         // want to potentially kill the plug-in inside of its URL request.
         
         if (JSString && target && [frame findFrameNamed:target] != frame) {

Modified: trunk/Source/WebKit/mac/Plugins/WebNetscapePluginView.mm (183505 => 183506)


--- trunk/Source/WebKit/mac/Plugins/WebNetscapePluginView.mm	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/WebKit/mac/Plugins/WebNetscapePluginView.mm	2015-04-28 20:45:08 UTC (rev 183506)
@@ -1731,7 +1731,7 @@
     }
         
     if (cTarget || JSString) {
-        // Make when targetting a frame or evaluating a JS string, perform the request after a delay because we don't
+        // Make when targeting a frame or evaluating a JS string, perform the request after a delay because we don't
         // want to potentially kill the plug-in inside of its URL request.
         
         if (JSString && target && [frame findFrameNamed:target] != frame) {

Modified: trunk/Source/WebKit/mac/WebView/WebPolicyDelegate.h (183505 => 183506)


--- trunk/Source/WebKit/mac/WebView/WebPolicyDelegate.h	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/WebKit/mac/WebView/WebPolicyDelegate.h	2015-04-28 20:45:08 UTC (rev 183506)
@@ -88,7 +88,7 @@
     called with an appropriate error. 
 
     <p>If a new window is going to be created for this navigation as a
-    result of frame targetting, then it will be created once you call
+    result of frame targeting, then it will be created once you call
     this method.
 */
 - (void)use;

Modified: trunk/Source/WebKit/win/ChangeLog (183505 => 183506)


--- trunk/Source/WebKit/win/ChangeLog	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/WebKit/win/ChangeLog	2015-04-28 20:45:08 UTC (rev 183506)
@@ -1,3 +1,12 @@
+2015-04-28  Joseph Pecoraro  <pecor...@apple.com>
+
+        Fix common typo "targetting" => "targeting"
+        https://bugs.webkit.org/show_bug.cgi?id=144349
+
+        Reviewed by Daniel Bates.
+
+        * Interfaces/IWebPolicyDelegate.idl:
+
 2015-04-28  Brady Eidson  <beid...@apple.com>
 
         Consolidate most "frame load" arguments into FrameLoadRequest.

Modified: trunk/Source/WebKit/win/Interfaces/IWebPolicyDelegate.idl (183505 => 183506)


--- trunk/Source/WebKit/win/Interfaces/IWebPolicyDelegate.idl	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Source/WebKit/win/Interfaces/IWebPolicyDelegate.idl	2015-04-28 20:45:08 UTC (rev 183506)
@@ -93,7 +93,7 @@
         called with an appropriate error. 
 
         <p>If a new window is going to be created for this navigation as a
-        result of frame targetting, then it will be created once you call
+        result of frame targeting, then it will be created once you call
         this method.
         - (void)use;
     */

Modified: trunk/Tools/ChangeLog (183505 => 183506)


--- trunk/Tools/ChangeLog	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Tools/ChangeLog	2015-04-28 20:45:08 UTC (rev 183506)
@@ -1,3 +1,13 @@
+2015-04-28  Joseph Pecoraro  <pecor...@apple.com>
+
+        Fix common typo "targetting" => "targeting"
+        https://bugs.webkit.org/show_bug.cgi?id=144349
+
+        Reviewed by Daniel Bates.
+
+        * Scripts/webkitdirs.pm:
+        (execMacWebKitAppForDebugging):
+
 2015-04-28  Joanmarie Diggs  <jdi...@igalia.com>
 
         [GTK][jhbuild] Mesa build failure with llvm 3.6

Modified: trunk/Tools/Scripts/webkitdirs.pm (183505 => 183506)


--- trunk/Tools/Scripts/webkitdirs.pm	2015-04-28 20:39:23 UTC (rev 183505)
+++ trunk/Tools/Scripts/webkitdirs.pm	2015-04-28 20:45:08 UTC (rev 183506)
@@ -2351,7 +2351,7 @@
         exec { $debuggerPath } $debuggerPath, @architectureFlags, $argumentsSeparator, $appPath, argumentsForRunAndDebugMacWebKitApp() or die;
     } else {
         if (shouldUseXPCServiceForWebProcess()) {
-            die "Targetting the Web Process is not compatible with using an XPC Service for the Web Process at this time.";
+            die "Targeting the Web Process is not compatible with using an XPC Service for the Web Process at this time.";
         }
         
         my $webProcessShimPath = File::Spec->catfile($productDir, "SecItemShim.dylib");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to