Changeset 147720 in webkit


Ignore:
Timestamp:
Apr 5, 2013 12:55:23 AM (11 years ago)
Author:
benjamin@webkit.org
Message:

Remove the chromium code from the filesystem module
https://bugs.webkit.org/show_bug.cgi?id=114002

Reviewed by Ryosuke Niwa.

  • Modules/filesystem/DOMFileSystemBase.cpp:

(WebCore::DOMFileSystemBase::createFileSystemURL):

  • Modules/filesystem/FileSystemType.h:
  • Modules/filesystem/LocalFileSystem.cpp:
  • Modules/filesystem/LocalFileSystem.h:

(LocalFileSystem):

Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147719 r147720  
     12013-04-05  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        Remove the chromium code from the filesystem module
     4        https://bugs.webkit.org/show_bug.cgi?id=114002
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Modules/filesystem/DOMFileSystemBase.cpp:
     9        (WebCore::DOMFileSystemBase::createFileSystemURL):
     10        * Modules/filesystem/FileSystemType.h:
     11        * Modules/filesystem/LocalFileSystem.cpp:
     12        * Modules/filesystem/LocalFileSystem.h:
     13        (LocalFileSystem):
     14
    1152013-04-05  Ryosuke Niwa  <rniwa@webkit.org>
    216
  • trunk/Source/WebCore/Modules/filesystem/DOMFileSystemBase.cpp

    r125807 r147720  
    7272}
    7373
    74 #if !PLATFORM(CHROMIUM)
    7574// static
    7675bool DOMFileSystemBase::isValidType(FileSystemType type)
     
    114113    return url;
    115114}
    116 #endif
    117115
    118116SecurityOrigin* DOMFileSystemBase::securityOrigin() const
  • trunk/Source/WebCore/Modules/filesystem/FileSystemType.h

    r120285 r147720  
    4343    // Transient isolated non-sandboxed filesystem.
    4444    FileSystemTypeIsolated,
    45 
    46 #if PLATFORM(CHROMIUM)
    47     // Non-sandbox filesystem.
    48     FileSystemTypeExternal,
    49 #endif
    5045};
    5146
  • trunk/Source/WebCore/Modules/filesystem/LocalFileSystem.cpp

    r130117 r147720  
    3131#include "config.h"
    3232#include "LocalFileSystem.h"
    33 
    34 #if PLATFORM(CHROMIUM)
    35 #error "Chromium should not compile this file and instead define its own version of these factories."
    36 #endif
    3733
    3834#if ENABLE(FILE_SYSTEM)
  • trunk/Source/WebCore/Modules/filesystem/LocalFileSystem.h

    r127757 r147720  
    6262    void deleteFileSystem(ScriptExecutionContext*, FileSystemType, PassOwnPtr<AsyncFileSystemCallbacks>);
    6363
    64 #if !PLATFORM(CHROMIUM)
    6564    // This call is not thread-safe; must be called before any worker threads are created.
    6665    static void initializeLocalFileSystem(const String&);
    6766
    6867    String fileSystemBasePath() const;
    69 #endif
    7068
    7169private:
Note: See TracChangeset for help on using the changeset viewer.