diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-25 07:32:31 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-25 07:32:31 +0000 |
commit | 13bb19301edbd208c222ac7cd9c68f74fbc30aa4 (patch) | |
tree | b366bc30385dd403e739a409b18d2a30e5a72a38 /webkit/webkit.gyp | |
parent | 563cc146d6a6d5b1e5c80ec1e36dda0585c900d6 (diff) | |
download | chromium_src-13bb19301edbd208c222ac7cd9c68f74fbc30aa4.zip chromium_src-13bb19301edbd208c222ac7cd9c68f74fbc30aa4.tar.gz chromium_src-13bb19301edbd208c222ac7cd9c68f74fbc30aa4.tar.bz2 |
Update webkit to r44123
This required dealing with a few changes in WebKit:
1- ImageBuffer::create() now returns a PassOwnPtr instead of an auto_ptr.
2- ChromeClient::createHTMLParserQuirks() now returns a PassOwnPtr instead of a raw pointer.
3- HTMLFormControlElement::onChange was renamed dispatchFormControlChangeEvent.
4- dom/SelectElement.{h,cpp} were added to the tree.
TEST=none
R=ukai
BUG=none
Review URL: http://codereview.chromium.org/115751
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16849 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/webkit.gyp')
-rw-r--r-- | webkit/webkit.gyp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/webkit/webkit.gyp b/webkit/webkit.gyp index ca4edf1..194c3a9 100644 --- a/webkit/webkit.gyp +++ b/webkit/webkit.gyp @@ -278,7 +278,9 @@ '../third_party/WebKit/JavaScriptCore/wtf/NotFound.h', '../third_party/WebKit/JavaScriptCore/wtf/OwnArrayPtr.h', '../third_party/WebKit/JavaScriptCore/wtf/OwnPtr.h', + '../third_party/WebKit/JavaScriptCore/wtf/OwnPtrCommon.h', '../third_party/WebKit/JavaScriptCore/wtf/OwnPtrWin.cpp', + '../third_party/WebKit/JavaScriptCore/wtf/PassOwnPtr.h', '../third_party/WebKit/JavaScriptCore/wtf/PassRefPtr.h', '../third_party/WebKit/JavaScriptCore/wtf/Platform.h', '../third_party/WebKit/JavaScriptCore/wtf/PtrAndFlags.h', @@ -1471,6 +1473,8 @@ '../third_party/WebKit/WebCore/dom/ScriptElement.h', '../third_party/WebKit/WebCore/dom/ScriptExecutionContext.cpp', '../third_party/WebKit/WebCore/dom/ScriptExecutionContext.h', + '../third_party/WebKit/WebCore/dom/SelectElement.cpp', + '../third_party/WebKit/WebCore/dom/SelectElement.h', '../third_party/WebKit/WebCore/dom/SelectorNodeList.cpp', '../third_party/WebKit/WebCore/dom/SelectorNodeList.h', '../third_party/WebKit/WebCore/dom/StaticNodeList.cpp', @@ -2210,6 +2214,10 @@ '../third_party/WebKit/WebCore/platform/graphics/filters/FEComponentTransfer.h', '../third_party/WebKit/WebCore/platform/graphics/filters/FEComposite.cpp', '../third_party/WebKit/WebCore/platform/graphics/filters/FEComposite.h', + '../third_party/WebKit/WebCore/platform/graphics/filters/SourceAlpha.cpp', + '../third_party/WebKit/WebCore/platform/graphics/filters/SourceAlpha.h', + '../third_party/WebKit/WebCore/platform/graphics/filters/SourceGraphic.cpp', + '../third_party/WebKit/WebCore/platform/graphics/filters/SourceGraphic.h', '../third_party/WebKit/WebCore/platform/graphics/gtk/ColorGtk.cpp', '../third_party/WebKit/WebCore/platform/graphics/gtk/FontCacheGtk.cpp', '../third_party/WebKit/WebCore/platform/graphics/gtk/FontCustomPlatformData.cpp', @@ -3484,6 +3492,7 @@ '../third_party/WebKit/WebCore/svg/Filter.cpp', '../third_party/WebKit/WebCore/svg/Filter.h', '../third_party/WebKit/WebCore/svg/FilterBuilder.h', + '../third_party/WebKit/WebCore/svg/FilterBuilder.cpp', '../third_party/WebKit/WebCore/svg/FilterEffect.cpp', '../third_party/WebKit/WebCore/svg/FilterEffect.h', '../third_party/WebKit/WebCore/svg/GradientAttributes.h', |