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

Side by Side 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, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package com.dom_distiller.client.sax; 5 package com.dom_distiller.client.sax;
6 6
7 public interface Attributes { 7 public interface Attributes {
8 8 String getValue(String key);
9 public String getValue(String key); 9 int getIndex(String key);
10 public String getURI(int index); 10 String getName(int index);
11 public String getLocalName(int index); 11 String getValue(int index);
12 public String getQName(int index); 12 int getLength();
13 public String getType(int index);
14 public String getValue(int index);
15 public int getLength();
16 } 13 }
OLDNEW
« 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