Changeset 80474 in webkit


Ignore:
Timestamp:
Mar 7, 2011 10:20:24 AM (13 years ago)
Author:
bulach@chromium.org
Message:

2011-03-07 Marcus Bulach <bulach@chromium.org>

Reviewed by Dan Bernstein.

WebViewImpl::focusedWebCoreFrame() should be const.
https://bugs.webkit.org/show_bug.cgi?id=55870

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::focusedWebCoreFrame):
  • src/WebViewImpl.h:
Location:
trunk/Source/WebKit/chromium
Files:
3 edited

Legend:

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

    r80473 r80474  
     12011-03-07  Marcus Bulach  <bulach@chromium.org>
     2
     3        Reviewed by Dan Bernstein.
     4
     5        WebViewImpl::focusedWebCoreFrame() should be const.
     6        https://bugs.webkit.org/show_bug.cgi?id=55870
     7
     8        * src/WebViewImpl.cpp:
     9        (WebKit::WebViewImpl::focusedWebCoreFrame):
     10        * src/WebViewImpl.h:
     11
    1122011-03-07  Eric Carlson  <eric.carlson@apple.com>
    213
  • trunk/Source/WebKit/chromium/src/WebViewImpl.cpp

    r80327 r80474  
    911911}
    912912
    913 Frame* WebViewImpl::focusedWebCoreFrame()
     913Frame* WebViewImpl::focusedWebCoreFrame() const
    914914{
    915915    return m_page.get() ? m_page->focusController()->focusedOrMainFrame() : 0;
  • trunk/Source/WebKit/chromium/src/WebViewImpl.h

    r80185 r80474  
    205205    }
    206206
    207     WebCore::Frame* focusedWebCoreFrame();
     207    WebCore::Frame* focusedWebCoreFrame() const;
    208208
    209209    // Returns the currently focused Node or null if no node has focus.
Note: See TracChangeset for help on using the changeset viewer.