Changeset 142075 in webkit


Ignore:
Timestamp:
Feb 7, 2013 12:38:55 AM (11 years ago)
Author:
haraken@chromium.org
Message:

Remove DOMWindow::parseModalDialogFeatures()
https://bugs.webkit.org/show_bug.cgi?id=109139

Reviewed by Kent Tamura.

No one uses the method. FIXME is saying:

FIXME: We can remove this function once V8 showModalDialog is changed to use DOMWindow.

Given that V8's showModalDialog() is now using DOMWindow, we can remove it.

No tests. No change in behavior.

  • page/DOMWindow.cpp:
  • page/DOMWindow.h:

(DOMWindow):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r142074 r142075  
     12013-02-06  Kentaro Hara  <haraken@chromium.org>
     2
     3        Remove DOMWindow::parseModalDialogFeatures()
     4        https://bugs.webkit.org/show_bug.cgi?id=109139
     5
     6        Reviewed by Kent Tamura.
     7
     8        No one uses the method. FIXME is saying:
     9
     10          // FIXME: We can remove this function once V8 showModalDialog is changed to use DOMWindow.
     11
     12        Given that V8's showModalDialog() is now using DOMWindow, we can remove it.
     13
     14        No tests. No change in behavior.
     15
     16        * page/DOMWindow.cpp:
     17        * page/DOMWindow.h:
     18        (DOMWindow):
     19
    1202013-02-06  Ilya Tikhonovsky  <loislo@chromium.org>
    221
  • trunk/Source/WebCore/page/DOMWindow.cpp

    r141466 r142075  
    350350}
    351351
    352 // FIXME: We can remove this function once V8 showModalDialog is changed to use DOMWindow.
    353 void DOMWindow::parseModalDialogFeatures(const String& string, HashMap<String, String>& map)
    354 {
    355     WindowFeatures::parseDialogFeatures(string, map);
    356 }
    357 
    358352bool DOMWindow::allowPopUp(Frame* firstFrame)
    359353{
  • trunk/Source/WebCore/page/DOMWindow.h

    r140010 r142075  
    122122
    123123        static FloatRect adjustWindowRect(Page*, const FloatRect& pendingChanges);
    124 
    125         // FIXME: We can remove this function once V8 showModalDialog is changed to use DOMWindow.
    126         static void parseModalDialogFeatures(const String&, HashMap<String, String>&);
    127124
    128125        bool allowPopUp(); // Call on first window, not target window.
Note: See TracChangeset for help on using the changeset viewer.