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

Unified Diff: src/com/dom_distiller/client/sax/ContentHandler.java

Issue 296113004: Start using computed style instead of default tag actions. (Closed) Base URL: https://code.google.com/p/dom-distiller/@master
Patch Set: Fixed nit. Created 6 years, 7 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: src/com/dom_distiller/client/sax/ContentHandler.java
diff --git a/src/com/dom_distiller/client/sax/ContentHandler.java b/src/com/dom_distiller/client/sax/ContentHandler.java
index 41876e9333bd969c4e27eb854bce09ca2163d7c8..40afb0331e2643e1c4f046583bf9c7f2e62cd421 100644
--- a/src/com/dom_distiller/client/sax/ContentHandler.java
+++ b/src/com/dom_distiller/client/sax/ContentHandler.java
@@ -4,11 +4,13 @@
package com.dom_distiller.client.sax;
+import com.google.gwt.dom.client.Element;
+
public interface ContentHandler {
public void endDocument();
public void ignorableWhitespace(char[] ch, int start, int length);
public void startDocument();
- public void startElement(String uri, String localName, String qName, Attributes atts);
- public void endElement(String uri, String localName, String qName);
+ public void startElement(Element element, Attributes atts);
+ public void endElement(Element element);
public void characters(char[] ch, int start, int length);
}

Powered by Google App Engine
This is Rietveld 408576698