Changeset 123200 in webkit


Ignore:
Timestamp:
Jul 20, 2012 3:28:43 AM (12 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

Unreviewed, rolling out r123085.
http://trac.webkit.org/changeset/123085
https://bugs.webkit.org/show_bug.cgi?id=91719

r123085 causes crashes on EFL layout test bot.

Source/WebKit2:

  • UIProcess/efl/WebContextEfl.cpp:

(WebKit::WebContext::applicationCacheDirectory):

Tools:

  • WebKitTestRunner/CMakeLists.txt:
  • WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp:

(WTR::LayoutTestController::platformInitialize):

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r123199 r123200  
     12012-07-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Unreviewed, rolling out r123085.
     4        http://trac.webkit.org/changeset/123085
     5        https://bugs.webkit.org/show_bug.cgi?id=91719
     6
     7        r123085 causes crashes on EFL layout test bot.
     8
     9        * UIProcess/efl/WebContextEfl.cpp:
     10        (WebKit::WebContext::applicationCacheDirectory):
     11
    1122012-07-20  Christophe Dumez  <christophe.dumez@intel.com>
    213
  • trunk/Source/WebKit2/UIProcess/efl/WebContextEfl.cpp

    r123085 r123200  
    2828
    2929#include <WebCore/ApplicationCacheStorage.h>
    30 #include <WebCore/FileSystem.h>
    3130#include <WebCore/NotImplemented.h>
    3231
     
    3534String WebContext::applicationCacheDirectory()
    3635{
    37     String cacheDir = WebCore::cacheStorage().cacheDirectory();
    38    
    39     // The WebKitTestRunner sets the cacheDirectory and
    40     // we should not overwrite it.
    41     if (cacheDir.isEmpty())
    42         cacheDir = makeString(WebCore::homeDirectoryPath(), "/.webkit/Applications");
    43 
    44     return cacheDir;
     36    return WebCore::cacheStorage().cacheDirectory();
    4537}
    4638
  • trunk/Tools/ChangeLog

    r123189 r123200  
     12012-07-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Unreviewed, rolling out r123085.
     4        http://trac.webkit.org/changeset/123085
     5        https://bugs.webkit.org/show_bug.cgi?id=91719
     6
     7        r123085 causes crashes on EFL layout test bot.
     8
     9        * WebKitTestRunner/CMakeLists.txt:
     10        * WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp:
     11        (WTR::LayoutTestController::platformInitialize):
     12
    1132012-07-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    214
  • trunk/Tools/WebKitTestRunner/CMakeLists.txt

    r123085 r123200  
    2525    ${JAVASCRIPTCORE_DIR}/ForwardingHeaders
    2626    ${WEBCORE_DIR}/editing
    27     ${WEBCORE_DIR}/page
    2827    ${WEBCORE_DIR}/platform
    2928    ${WEBCORE_DIR}/platform/graphics
    3029    ${WEBCORE_DIR}/platform/network
    31     ${WEBCORE_DIR}/platform/sql
    3230    ${WEBCORE_DIR}/platform/text
    3331    ${WEBCORE_DIR}/testing/js
  • trunk/Tools/WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp

    r123085 r123200  
    2323#include "InjectedBundle.h"
    2424#include <Ecore.h>
    25 #include <WebCore/ApplicationCacheStorage.h>
    2625
    2726namespace WTR {
     
    3534void LayoutTestController::platformInitialize()
    3635{
    37     // The testrunner script is may be running multiple processes in parallel,
    38     // and it makes appcache tests fail if they are using the same directory.
    39     // DUMPRENDERTREE_TEMP points to a different directory for each process.
    40     String appCacheDirectory = makeString(String::fromUTF8(getenv("DUMPRENDERTREE_TEMP")), "/Applications");
    41     WebCore::cacheStorage().setCacheDirectory(appCacheDirectory);
    4236    m_waitToDumpWatchdogTimer = 0;
    4337}
Note: See TracChangeset for help on using the changeset viewer.