- a/Source/WebCore/ChangeLog +12 lines
Lines 1-3 a/Source/WebCore/ChangeLog_sec1
1
2012-06-14  Kinuko Yasuda  <kinuko@chromium.org>
2
3
        [chromium] Cleanup: remove PlatformSupport::createAsyncFileSystem as it's no longer used
4
        https://bugs.webkit.org/show_bug.cgi?id=89083
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        No new tests as this has no functional changes.
9
10
        * platform/chromium/PlatformSupport.h:
11
        (PlatformSupport):
12
1
2012-06-14  Edaena Salinas Jasso  <edaena@apple.com>
13
2012-06-14  Edaena Salinas Jasso  <edaena@apple.com>
2
14
3
        el.getAttribute('type') returns 'null' when setting el.type to null
15
        el.getAttribute('type') returns 'null' when setting el.type to null
- a/Source/WebKit/chromium/ChangeLog +9 lines
Lines 1-3 a/Source/WebKit/chromium/ChangeLog_sec1
1
2012-06-14  Kinuko Yasuda  <kinuko@chromium.org>
2
3
        [chromium] Cleanup: remove PlatformSupport::createAsyncFileSystem as it's no longer used
4
        https://bugs.webkit.org/show_bug.cgi?id=89083
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        * src/PlatformSupport.cpp:
9
1
2012-06-14  Dan Alcantara  <dfalcantara@chromium.org>
10
2012-06-14  Dan Alcantara  <dfalcantara@chromium.org>
2
11
3
        [chromium] Rename WebFrameClient::userAgent() to better reflect what it does
12
        [chromium] Rename WebFrameClient::userAgent() to better reflect what it does
- a/Source/WebCore/platform/chromium/PlatformSupport.h -5 lines
Lines 65-71 typedef struct HFONT__* HFONT; a/Source/WebCore/platform/chromium/PlatformSupport.h_sec1
65
65
66
namespace WebCore {
66
namespace WebCore {
67
67
68
class AsyncFileSystem;
69
class Color;
68
class Color;
70
class Cursor;
69
class Cursor;
71
class Document;
70
class Document;
Lines 99-108 public: a/Source/WebCore/platform/chromium/PlatformSupport.h_sec2
99
    static void deleteCookie(const Document*, const KURL&, const String& cookieName);
98
    static void deleteCookie(const Document*, const KURL&, const String& cookieName);
100
    static bool cookiesEnabled(const Document*);
99
    static bool cookiesEnabled(const Document*);
101
100
102
#if ENABLE(FILE_SYSTEM)
103
    static PassOwnPtr<AsyncFileSystem> createAsyncFileSystem();
104
#endif
105
106
    // Font ---------------------------------------------------------------
101
    // Font ---------------------------------------------------------------
107
#if OS(WINDOWS)
102
#if OS(WINDOWS)
108
    static bool ensureFontLoaded(HFONT);
103
    static bool ensureFontLoaded(HFONT);
- a/Source/WebKit/chromium/src/PlatformSupport.cpp -10 lines
Lines 78-84 a/Source/WebKit/chromium/src/PlatformSupport.cpp_sec1
78
78
79
#include "NativeImageSkia.h"
79
#include "NativeImageSkia.h"
80
80
81
#include "AsyncFileSystemChromium.h"
82
#include "BitmapImage.h"
81
#include "BitmapImage.h"
83
#include "Cookie.h"
82
#include "Cookie.h"
84
#include "Document.h"
83
#include "Document.h"
Lines 207-221 bool PlatformSupport::cookiesEnabled(const Document* document) a/Source/WebKit/chromium/src/PlatformSupport.cpp_sec2
207
    return result;
206
    return result;
208
}
207
}
209
208
210
// File ------------------------------------------------------------------------
211
212
#if ENABLE(FILE_SYSTEM)
213
PassOwnPtr<AsyncFileSystem> PlatformSupport::createAsyncFileSystem()
214
{
215
    return AsyncFileSystemChromium::create();
216
}
217
#endif
218
219
// Font -----------------------------------------------------------------------
209
// Font -----------------------------------------------------------------------
220
210
221
#if OS(WINDOWS)
211
#if OS(WINDOWS)

Return to Bug 89083