diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 21:33:01 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 21:33:01 +0000 |
commit | 97d201b98019051b05093a2457edd079b4a2d9ac (patch) | |
tree | 47bc3331cc7e3d9f64ed402780d778fae7421922 /webkit/port | |
parent | 79867b59fa6bbfb55fcd9a6b6ba6b7d55a68539e (diff) | |
download | chromium_src-97d201b98019051b05093a2457edd079b4a2d9ac.zip chromium_src-97d201b98019051b05093a2457edd079b4a2d9ac.tar.gz chromium_src-97d201b98019051b05093a2457edd079b4a2d9ac.tar.bz2 |
Start porting port. Also move perl declarations into the correct place
for posix systems. Also remove stray qualifiers in C++ files.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1190 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r-- | webkit/port/bindings/v8/v8_proxy.cpp | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_proxy.h | 12 | ||||
-rw-r--r-- | webkit/port/css/RGBColor.h | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/webkit/port/bindings/v8/v8_proxy.cpp b/webkit/port/bindings/v8/v8_proxy.cpp index d6015b4..b5398a1 100644 --- a/webkit/port/bindings/v8/v8_proxy.cpp +++ b/webkit/port/bindings/v8/v8_proxy.cpp @@ -72,7 +72,7 @@ #include "EventTarget.h" #include "Event.h" #include "HTMLInputElement.h" -#include "xmlhttprequest.h" +#include "XMLHttpRequest.h" #include "StyleSheet.h" #include "StyleSheetList.h" #include "CSSRule.h" diff --git a/webkit/port/bindings/v8/v8_proxy.h b/webkit/port/bindings/v8/v8_proxy.h index 27c87df..f3c5efa 100644 --- a/webkit/port/bindings/v8/v8_proxy.h +++ b/webkit/port/bindings/v8/v8_proxy.h @@ -348,11 +348,11 @@ class V8Proxy { // Create an instance of a function descriptor and set to the global object // as a named property. Used by v8_test_shell. - static void V8Proxy::BindJSObjectToWindow(Frame* frame, - const char* name, - int type, - v8::Handle<v8::FunctionTemplate> desc, - void* imp); + static void BindJSObjectToWindow(Frame* frame, + const char* name, + int type, + v8::Handle<v8::FunctionTemplate> desc, + void* imp); static v8::Handle<v8::Value> EventToV8Object(Event* event); static Event* ToNativeEvent(v8::Handle<v8::Value> jsevent) { @@ -418,7 +418,7 @@ class V8Proxy { static v8::Handle<v8::Object> CSSRuleToV8Object(CSSRule* rule); // Returns the JS wrapper of a window object, initializes the environment // of the window frame if needed. - static v8::Handle<v8::Object> V8Proxy::WindowToV8Object(DOMWindow* window); + static v8::Handle<v8::Object> WindowToV8Object(DOMWindow* window); #if ENABLE(SVG) static v8::Handle<v8::Object> SVGElementInstanceToV8Object( diff --git a/webkit/port/css/RGBColor.h b/webkit/port/css/RGBColor.h index c29a288..239d406 100644 --- a/webkit/port/css/RGBColor.h +++ b/webkit/port/css/RGBColor.h @@ -38,7 +38,7 @@ namespace WebCore { class RGBColor : public RefCounted<RGBColor> { public: - RGBColor::RGBColor(unsigned rgbcolor) : m_rgbcolor(rgbcolor) { } + RGBColor(unsigned rgbcolor) : m_rgbcolor(rgbcolor) { } CSSPrimitiveValue* red(); CSSPrimitiveValue* green(); |