summaryrefslogtreecommitdiffstats
path: root/webkit/port/bindings
diff options
context:
space:
mode:
authorfqian@google.com <fqian@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-06 01:11:06 +0000
committerfqian@google.com <fqian@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-06 01:11:06 +0000
commit2761b3e46487a7bcf12b21ec450c880831ef5313 (patch)
tree06307414d0027dc476bd3e2b0638eb7f97b1638f /webkit/port/bindings
parentfe844b527a6a8409d09dcf1960a2af1f65465f51 (diff)
downloadchromium_src-2761b3e46487a7bcf12b21ec450c880831ef5313.zip
chromium_src-2761b3e46487a7bcf12b21ec450c880831ef5313.tar.gz
chromium_src-2761b3e46487a7bcf12b21ec450c880831ef5313.tar.bz2
Incorporate Mads' comment, only comment style changes.
TBR=ager Review URL: http://codereview.chromium.org/12962 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6473 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/bindings')
-rw-r--r--webkit/port/bindings/v8/v8_custom.cpp2
-rw-r--r--webkit/port/bindings/v8/v8_index.h2
-rw-r--r--webkit/port/bindings/v8/v8_proxy.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/webkit/port/bindings/v8/v8_custom.cpp b/webkit/port/bindings/v8/v8_custom.cpp
index 281ae7c..ced5794 100644
--- a/webkit/port/bindings/v8/v8_custom.cpp
+++ b/webkit/port/bindings/v8/v8_custom.cpp
@@ -1394,7 +1394,7 @@ NAMED_PROPERTY_GETTER(DOMWindow) {
if (items->length() == 1) {
return V8Proxy::NodeToV8Object(items->firstItem());
} else {
- return V8Proxy::ToV8Object(V8ClassIndex::HTMLCOLLECTION,items.get());
+ return V8Proxy::ToV8Object(V8ClassIndex::HTMLCOLLECTION, items.get());
}
}
}
diff --git a/webkit/port/bindings/v8/v8_index.h b/webkit/port/bindings/v8/v8_index.h
index 2334773..7122c56 100644
--- a/webkit/port/bindings/v8/v8_index.h
+++ b/webkit/port/bindings/v8/v8_index.h
@@ -377,7 +377,7 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)();
V(SVGUNITTYPES, SVGUnitTypes) \
V(SVGZOOMEVENT, SVGZoomEvent)
-// SVG POD types shoud list all types whose IDL has PODType declaration.
+// SVG POD types should list all types whose IDL has PODType declaration.
#define SVG_POD_TYPES(V) \
V(SVGLENGTH, SVGLength) \
V(SVGTRANSFORM, SVGTransform) \
diff --git a/webkit/port/bindings/v8/v8_proxy.cpp b/webkit/port/bindings/v8/v8_proxy.cpp
index 8b90f54..c785c6b 100644
--- a/webkit/port/bindings/v8/v8_proxy.cpp
+++ b/webkit/port/bindings/v8/v8_proxy.cpp
@@ -476,7 +476,7 @@ v8::Handle<v8::Value> V8Proxy::SVGObjectWithContextToV8Object(
SVG_OBJECT_TYPES(MAKE_CASE)
#undef MAKE_CASE
#define MAKE_CASE(TYPE, NAME) \
- case V8ClassIndex::TYPE: \
+ case V8ClassIndex::TYPE: \
static_cast<V8SVGPODTypeWrapper<NAME>*>(object)->ref(); break;
SVG_POD_NATIVE_TYPES(MAKE_CASE)
#undef MAKE_CASE