Title: [145033] trunk/Source/WebKit/chromium
Revision
145033
Author
[email protected]
Date
2013-03-06 20:47:51 -0800 (Wed, 06 Mar 2013)

Log Message

[chromium] Fix typo: destoryPage() => destroyPage()
https://bugs.webkit.org/show_bug.cgi?id=111664

Patch by David Dorwin <[email protected]> on 2013-03-06
Reviewed by Kentaro Hara.

* src/WebHelperPluginImpl.cpp:
(WebKit::WebHelperPluginImpl::closeHelperPlugin):
(WebKit::WebHelperPluginImpl::destroyPage):
* src/WebHelperPluginImpl.h:
(WebHelperPluginImpl):
* src/WebPagePopupImpl.cpp:
(WebKit::WebPagePopupImpl::destroyPage):
(WebKit::WebPagePopupImpl::close):
(WebKit::WebPagePopupImpl::closePopup):
* src/WebPagePopupImpl.h:
(WebPagePopupImpl):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (145032 => 145033)


--- trunk/Source/WebKit/chromium/ChangeLog	2013-03-07 04:47:29 UTC (rev 145032)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-03-07 04:47:51 UTC (rev 145033)
@@ -1,3 +1,22 @@
+2013-03-06  David Dorwin  <[email protected]>
+
+        [chromium] Fix typo: destoryPage() => destroyPage()
+        https://bugs.webkit.org/show_bug.cgi?id=111664
+
+        Reviewed by Kentaro Hara.
+
+        * src/WebHelperPluginImpl.cpp:
+        (WebKit::WebHelperPluginImpl::closeHelperPlugin):
+        (WebKit::WebHelperPluginImpl::destroyPage):
+        * src/WebHelperPluginImpl.h:
+        (WebHelperPluginImpl):
+        * src/WebPagePopupImpl.cpp:
+        (WebKit::WebPagePopupImpl::destroyPage):
+        (WebKit::WebPagePopupImpl::close):
+        (WebKit::WebPagePopupImpl::closePopup):
+        * src/WebPagePopupImpl.h:
+        (WebPagePopupImpl):
+
 2013-03-06  Ankur Taly  <[email protected]>
 
         Modify log method in WebDOMActivityLogger so that the apiName and

Modified: trunk/Source/WebKit/chromium/src/WebHelperPluginImpl.cpp (145032 => 145033)


--- trunk/Source/WebKit/chromium/src/WebHelperPluginImpl.cpp	2013-03-07 04:47:29 UTC (rev 145032)
+++ trunk/Source/WebKit/chromium/src/WebHelperPluginImpl.cpp	2013-03-07 04:47:51 UTC (rev 145033)
@@ -134,7 +134,7 @@
     // We must destroy the page now in case the host page is being destroyed, in
     // which case some of the objects the page depends on may have been
     // destroyed by the time this->close() is called asynchronously.
-    destoryPage();
+    destroyPage();
 
     // m_widgetClient might be 0 because this widget might be already closed.
     if (m_widgetClient) {
@@ -204,7 +204,7 @@
     return true;
 }
 
-void WebHelperPluginImpl::destoryPage()
+void WebHelperPluginImpl::destroyPage()
 {
     if (!m_page)
         return;

Modified: trunk/Source/WebKit/chromium/src/WebHelperPluginImpl.h (145032 => 145033)


--- trunk/Source/WebKit/chromium/src/WebHelperPluginImpl.h	2013-03-07 04:47:29 UTC (rev 145032)
+++ trunk/Source/WebKit/chromium/src/WebHelperPluginImpl.h	2013-03-07 04:47:51 UTC (rev 145033)
@@ -64,7 +64,7 @@
 private:
     explicit WebHelperPluginImpl(WebWidgetClient*);
     bool initializePage(WebKit::WebViewImpl*, const String& pluginType);
-    void destoryPage();
+    void destroyPage();
 
     // WebWidget methods:
     virtual void layout() OVERRIDE;

Modified: trunk/Source/WebKit/chromium/src/WebPagePopupImpl.cpp (145032 => 145033)


--- trunk/Source/WebKit/chromium/src/WebPagePopupImpl.cpp	2013-03-07 04:47:29 UTC (rev 145032)
+++ trunk/Source/WebKit/chromium/src/WebPagePopupImpl.cpp	2013-03-07 04:47:51 UTC (rev 145033)
@@ -225,7 +225,7 @@
     return true;
 }
 
-void WebPagePopupImpl::destoryPage()
+void WebPagePopupImpl::destroyPage()
 {
     if (!m_page)
         return;
@@ -317,7 +317,7 @@
 void WebPagePopupImpl::close()
 {
     m_closing = true;
-    destoryPage(); // In case closePopup() was not called.
+    destroyPage(); // In case closePopup() was not called.
     m_widgetClient = 0;
     deref();
 }
@@ -332,7 +332,7 @@
     }
     m_closing = true;
 
-    destoryPage();
+    destroyPage();
 
     // m_widgetClient might be 0 because this widget might be already closed.
     if (m_widgetClient) {

Modified: trunk/Source/WebKit/chromium/src/WebPagePopupImpl.h (145032 => 145033)


--- trunk/Source/WebKit/chromium/src/WebPagePopupImpl.h	2013-03-07 04:47:29 UTC (rev 145032)
+++ trunk/Source/WebKit/chromium/src/WebPagePopupImpl.h	2013-03-07 04:47:51 UTC (rev 145033)
@@ -85,7 +85,7 @@
 
     explicit WebPagePopupImpl(WebWidgetClient*);
     bool initializePage();
-    void destoryPage();
+    void destroyPage();
 
     WebWidgetClient* m_widgetClient;
     WebRect m_windowRectInScreen;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to