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

Unified Diff: Source/core/dom/ErrorEvent.h

Issue 20679002: Add 'colno' attribute to ErrorEvent interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/core/dom/ErrorEvent.h
diff --git a/Source/core/dom/ErrorEvent.h b/Source/core/dom/ErrorEvent.h
index 1e57e25c112a6c213e1811a677d8b9d6250aefd2..a28dcbef2a1e81300849935046f502bf0a8e94db 100644
--- a/Source/core/dom/ErrorEvent.h
+++ b/Source/core/dom/ErrorEvent.h
@@ -42,7 +42,7 @@ struct ErrorEventInit : public EventInit {
String message;
String filename;
unsigned lineno;
- unsigned column;
+ unsigned colno;
};
class ErrorEvent : public Event {
@@ -64,7 +64,7 @@ public:
const String& message() const { return m_message; }
const String& filename() const { return m_fileName; }
unsigned lineno() const { return m_lineNumber; }
- unsigned column() const { return m_columnNumber; }
+ unsigned colno() const { return m_columnNumber; }
virtual const AtomicString& interfaceName() const;

Powered by Google App Engine
This is Rietveld 408576698