diff options
author | awalker@google.com <awalker@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-12 23:09:35 +0000 |
---|---|---|
committer | awalker@google.com <awalker@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-12 23:09:35 +0000 |
commit | 0f0981df65123740e2e873f33cec192c85218c79 (patch) | |
tree | 9d2f4f5dddab7a15212cc556fcc50717dc57a952 /webkit/port | |
parent | 2ecfe2aeacfbd30e38a309eb1c0f017d6ec5e1ac (diff) | |
download | chromium_src-0f0981df65123740e2e873f33cec192c85218c79.zip chromium_src-0f0981df65123740e2e873f33cec192c85218c79.tar.gz chromium_src-0f0981df65123740e2e873f33cec192c85218c79.tar.bz2 |
Chromium side of WebKit merge to 40846
Darin: primary
Brett: FYI
Review URL: http://codereview.chromium.org/21243
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9712 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r-- | webkit/port/DerivedSources.make | 2 | ||||
-rw-r--r-- | webkit/port/bindings/scripts/CodeGeneratorV8.pm | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_index.cpp | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_index.h | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_proxy.cpp | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/webkit/port/DerivedSources.make b/webkit/port/DerivedSources.make index 71e7eee..61ef1d2 100644 --- a/webkit/port/DerivedSources.make +++ b/webkit/port/DerivedSources.make @@ -621,6 +621,8 @@ all : \ V8Attr.h \ V8BarInfo.h \ V8CanvasPixelArray.h \ + V8ClientRect.h \ + V8ClientRectList.h \ V8CDATASection.h \ V8CSSCharsetRule.h \ V8CSSFontFaceRule.h \ diff --git a/webkit/port/bindings/scripts/CodeGeneratorV8.pm b/webkit/port/bindings/scripts/CodeGeneratorV8.pm index 497be8e..afd977c 100644 --- a/webkit/port/bindings/scripts/CodeGeneratorV8.pm +++ b/webkit/port/bindings/scripts/CodeGeneratorV8.pm @@ -1577,6 +1577,8 @@ sub IsRefPtrType my $type = shift; return 1 if $type eq "Attr"; return 1 if $type eq "CanvasGradient"; + return 1 if $type eq "ClientRect"; + return 1 if $type eq "ClientRectList"; return 1 if $type eq "CDATASection"; return 1 if $type eq "Comment"; return 1 if $type eq "CSSRule"; diff --git a/webkit/port/bindings/v8/v8_index.cpp b/webkit/port/bindings/v8/v8_index.cpp index 6be992c..a82479a 100644 --- a/webkit/port/bindings/v8/v8_index.cpp +++ b/webkit/port/bindings/v8/v8_index.cpp @@ -41,6 +41,8 @@ #include "V8CanvasPixelArray.h" #include "V8CDATASection.h" #include "V8CharacterData.h" +#include "V8ClientRect.h" +#include "V8ClientRectList.h" #include "V8Clipboard.h" #include "V8Comment.h" #include "V8Console.h" diff --git a/webkit/port/bindings/v8/v8_index.h b/webkit/port/bindings/v8/v8_index.h index f77557f..1d5db7f 100644 --- a/webkit/port/bindings/v8/v8_index.h +++ b/webkit/port/bindings/v8/v8_index.h @@ -244,6 +244,8 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)(); V(CANVASGRADIENT, CanvasGradient) \ V(CANVASPATTERN, CanvasPattern) \ V(CANVASRENDERINGCONTEXT2D, CanvasRenderingContext2D) \ + V(CLIENTRECT, ClientRect) \ + V(CLIENTRECTLIST, ClientRectList) \ V(CLIPBOARD, Clipboard) \ V(CONSOLE, Console) \ V(COUNTER, Counter) \ diff --git a/webkit/port/bindings/v8/v8_proxy.cpp b/webkit/port/bindings/v8/v8_proxy.cpp index aa143ff..cebfd55 100644 --- a/webkit/port/bindings/v8/v8_proxy.cpp +++ b/webkit/port/bindings/v8/v8_proxy.cpp @@ -54,6 +54,8 @@ #include "CanvasRenderingContext2D.h" #include "CanvasStyle.h" #include "CharacterData.h" +#include "ClientRect.h" +#include "ClientRectList.h" #include "Clipboard.h" #include "Console.h" #include "Counter.h" |