Changeset 66839 in webkit


Ignore:
Timestamp:
Sep 6, 2010 10:30:00 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-09-06 Ryuan Choi <ryuan.choi@samsung.com>

Unreviewed build fix.

[EFL] REGRESSION(66794) Need to fix build break.
https://bugs.webkit.org/show_bug.cgi?id=45241

Add dummy class(FrameNetworkingContextEfl) like GTK+ port and implement
as EFL style.

  • WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::createNetworkingContext):
  • WebCoreSupport/FrameNetworkingContextEfl.h: Added. (WebCore::FrameNetworkingContextEfl::create): (WebCore::FrameNetworkingContextEfl::coreFrame): (WebCore::FrameNetworkingContextEfl::FrameNetworkingContextEfl):
Location:
trunk/WebKit/efl
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/efl/ChangeLog

    r66797 r66839  
     12010-09-06  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        Unreviewed build fix.
     4
     5        [EFL] REGRESSION(66794) Need to fix build break.
     6        https://bugs.webkit.org/show_bug.cgi?id=45241
     7
     8        Add dummy class(FrameNetworkingContextEfl) like GTK+ port and implement
     9        as EFL style.
     10
     11        * WebCoreSupport/FrameLoaderClientEfl.cpp:
     12        (WebCore::FrameLoaderClientEfl::createNetworkingContext):
     13        * WebCoreSupport/FrameNetworkingContextEfl.h: Added.
     14        (WebCore::FrameNetworkingContextEfl::create):
     15        (WebCore::FrameNetworkingContextEfl::coreFrame):
     16        (WebCore::FrameNetworkingContextEfl::FrameNetworkingContextEfl):
     17
    1182010-09-04  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
    219
  • trunk/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp

    r66794 r66839  
    4040#include "FormState.h"
    4141#include "FrameLoader.h"
    42 #include "FrameNetworkingContext.h"
     42#include "FrameNetworkingContextEfl.h"
    4343#include "FrameTree.h"
    4444#include "FrameView.h"
     
    949949PassRefPtr<FrameNetworkingContext> FrameLoaderClientEfl::createNetworkingContext()
    950950{
    951     return FrameNetworkingContext::create(core(m_webFrame.get()));
    952 }
    953 
    954 }
     951    return FrameNetworkingContextEfl::create(ewk_frame_core_get(m_frame));
     952}
     953
     954}
Note: See TracChangeset for help on using the changeset viewer.