Changeset 81279 in webkit


Ignore:
Timestamp:
Mar 16, 2011 2:22:48 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-03-16 Sreeram Ramachandran <sreeram@google.com>

Reviewed by Dimitri Glazkov.

Revert of r80451. Decided to do this in WebCore instead.
https://bugs.webkit.org/show_bug.cgi?id=55844

  • public/WebFrame.h:
  • src/WebFrameImpl.cpp:
  • src/WebFrameImpl.h:
Location:
trunk/Source/WebKit/chromium
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r81217 r81279  
     12011-03-16  Sreeram Ramachandran  <sreeram@google.com>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Revert of r80451. Decided to do this in WebCore instead.
     6        https://bugs.webkit.org/show_bug.cgi?id=55844
     7
     8        * public/WebFrame.h:
     9        * src/WebFrameImpl.cpp:
     10        * src/WebFrameImpl.h:
     11
    1122011-03-15  Ilya Sherman  <isherman@chromium.org>
    213
  • trunk/Source/WebKit/chromium/public/WebFrame.h

    r81099 r81279  
    366366    virtual bool willSuppressOpenerInNewFrame() const = 0;
    367367
    368     // Returns true if this frame is in the midst of executing a beforeunload
    369     // or unload event handler.
    370     virtual bool pageDismissalEventBeingDispatched() const = 0;
    371 
    372368
    373369    // Editing -------------------------------------------------------------
  • trunk/Source/WebKit/chromium/src/WebFrameImpl.cpp

    r81099 r81279  
    10781078}
    10791079
    1080 bool WebFrameImpl::pageDismissalEventBeingDispatched() const
    1081 {
    1082     return frame()->loader()->pageDismissalEventBeingDispatched();
    1083 }
    1084 
    10851080void WebFrameImpl::replaceSelection(const WebString& text)
    10861081{
  • trunk/Source/WebKit/chromium/src/WebFrameImpl.h

    r81099 r81279  
    139139    virtual bool isProcessingUserGesture() const;
    140140    virtual bool willSuppressOpenerInNewFrame() const;
    141     virtual bool pageDismissalEventBeingDispatched() const;
    142141    virtual void replaceSelection(const WebString&);
    143142    virtual void insertText(const WebString&);
Note: See TracChangeset for help on using the changeset viewer.