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

Unified Diff: src/com/dom_distiller/client/sax/Attributes.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/Attributes.java
diff --git a/src/com/dom_distiller/client/sax/Attributes.java b/src/com/dom_distiller/client/sax/Attributes.java
index 73621d1833edbc7eadb0b51c525501e506ef0bca..a329edb2272063b638352da5843976e134217dc6 100644
--- a/src/com/dom_distiller/client/sax/Attributes.java
+++ b/src/com/dom_distiller/client/sax/Attributes.java
@@ -5,12 +5,9 @@
package com.dom_distiller.client.sax;
public interface Attributes {
-
- public String getValue(String key);
- public String getURI(int index);
- public String getLocalName(int index);
- public String getQName(int index);
- public String getType(int index);
- public String getValue(int index);
- public int getLength();
+ String getValue(String key);
+ int getIndex(String key);
+ String getName(int index);
+ String getValue(int index);
+ int getLength();
}
« no previous file with comments | « src/com/dom_distiller/client/DomToSaxVisitor.java ('k') | src/com/dom_distiller/client/sax/AttributesImpl.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698