Changeset 89764 in webkit


Ignore:
Timestamp:
Jun 25, 2011 11:33:59 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-06-25 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

[Chromium] Update WebKit for WEBKIT_FRAME_TO_DOCUMENT_API_MOVE
https://bugs.webkit.org/show_bug.cgi?id=63394

  • src/FrameLoaderClientImpl.cpp: (WebKit::FrameLoaderClientImpl::dispatchWillPerformClientRedirect):

2011-06-25 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

[Chromium] Update WebKit for WEBKIT_FRAME_TO_DOCUMENT_API_MOVE
https://bugs.webkit.org/show_bug.cgi?id=63394

  • DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::queueLoad):
Location:
trunk
Files:
4 edited

Legend:

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

    r89761 r89764  
     12011-06-25  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Chromium] Update WebKit for WEBKIT_FRAME_TO_DOCUMENT_API_MOVE
     6        https://bugs.webkit.org/show_bug.cgi?id=63394
     7
     8        * src/FrameLoaderClientImpl.cpp:
     9        (WebKit::FrameLoaderClientImpl::dispatchWillPerformClientRedirect):
     10
    1112011-06-25  Adam Barth  <abarth@webkit.org>
    212
  • trunk/Source/WebKit/chromium/src/FrameLoaderClientImpl.cpp

    r88628 r89764  
    5959#include "WebDataSourceImpl.h"
    6060#include "WebDevToolsAgentPrivate.h"
     61#include "WebDocument.h"
    6162#include "WebFormElement.h"
    6263#include "WebFrameClient.h"
     
    587588    // Tells dispatchDidStartProvisionalLoad that if it sees this item it is a
    588589    // redirect and the source item should be added as the start of the chain.
    589     m_expectedClientRedirectSrc = m_webFrame->url();
     590    m_expectedClientRedirectSrc = m_webFrame->document().url();
    590591    m_expectedClientRedirectDest = url;
    591592
  • trunk/Tools/ChangeLog

    r89759 r89764  
     12011-06-25  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Chromium] Update WebKit for WEBKIT_FRAME_TO_DOCUMENT_API_MOVE
     6        https://bugs.webkit.org/show_bug.cgi?id=63394
     7
     8        * DumpRenderTree/chromium/LayoutTestController.cpp:
     9        (LayoutTestController::queueLoad):
     10
    1112011-06-25  Brent Fulgham  <bfulgham@webkit.org>
    212
  • trunk/Tools/DumpRenderTree/chromium/LayoutTestController.cpp

    r89734 r89764  
    498498    if (arguments.size() > 0 && arguments[0].isString()) {
    499499        // FIXME: Implement WebURL::resolve() and avoid GURL.
    500         GURL currentURL = m_shell->webView()->mainFrame()->url();
     500        GURL currentURL = m_shell->webView()->mainFrame()->document().url();
    501501        GURL fullURL = currentURL.Resolve(arguments[0].toString());
    502502
Note: See TracChangeset for help on using the changeset viewer.