Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Unified Diff: Source/bindings/v8/custom/V8CSSRuleCustom.cpp

Issue 14110002: Introduce bindings.gyp (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address Nico's comments Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/v8/custom/V8CSSRuleCustom.cpp
diff --git a/Source/bindings/v8/custom/V8CSSRuleCustom.cpp b/Source/bindings/v8/custom/V8CSSRuleCustom.cpp
index 61e39775a1e98d4fcdafce128781651daab890ce..4de6fb5d55a7355577bd691bca800802306f9107 100644
--- a/Source/bindings/v8/custom/V8CSSRuleCustom.cpp
+++ b/Source/bindings/v8/custom/V8CSSRuleCustom.cpp
@@ -58,7 +58,7 @@ v8::Handle<v8::Object> wrap(CSSRule* impl, v8::Handle<v8::Object> creationContex
switch (impl->type()) {
case CSSRule::UNKNOWN_RULE:
// CSSUnknownRule.idl is explicitly excluded as it doesn't add anything
- // over CSSRule.idl (see WebCore.gyp/WebCore.gyp: 'bindings_idl_files').
+ // over CSSRule.idl (see bindings/derived_sources.gyp: 'idl_files').
// -> Use the base class wrapper here.
return V8CSSRule::createWrapper(impl, creationContext, isolate);
case CSSRule::STYLE_RULE:

Powered by Google App Engine
This is Rietveld 408576698