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

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: Added tests 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..30cbe6f065fed862f9b1b7325852a9444a64db90 100644
--- a/src/com/dom_distiller/client/sax/ContentHandler.java
+++ b/src/com/dom_distiller/client/sax/ContentHandler.java
@@ -4,11 +4,14 @@
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(
Yaron 2014/05/29 01:09:10 Same as above. Let's clean up the interface here a
nyquist 2014/05/29 23:42:25 Done.
+ String uri, String localName, String qName, Element element, Attributes atts);
+ public void endElement(String uri, String localName, String qName, Element element);
public void characters(char[] ch, int start, int length);
}

Powered by Google App Engine
This is Rietveld 408576698