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

Side by Side Diff: java/org/chromium/distiller/ParsedUrl.java

Issue 1029593003: implement validations of pagination URLs (Closed) Base URL: https://github.com/chromium/dom-distiller.git@master
Patch Set: addr chris's comments Created 5 years, 8 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 2015 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 org.chromium.distiller; 5 package org.chromium.distiller;
6 6
7 import com.google.gwt.core.client.JavaScriptObject; 7 import com.google.gwt.core.client.JavaScriptObject;
8 8
9 /** 9 /**
10 * Wraps a javascript URL object and its URLUtils properties, with additional me thods and instance 10 * Wraps a javascript URL object and its URLUtils properties, with additional me thods and instance
11 * fields as needed. 11 * fields as needed.
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 @Override 205 @Override
206 public String toString() { 206 public String toString() {
207 return mUrl.toString(); 207 return mUrl.toString();
208 } 208 }
209 209
210 private ParsedUrl(Url url) { 210 private ParsedUrl(Url url) {
211 mUrl = url; 211 mUrl = url;
212 } 212 }
213 213
214 } 214 }
OLDNEW
« no previous file with comments | « java/org/chromium/distiller/PageParameterDetector.java ('k') | java/org/chromium/distiller/PathComponentPagePattern.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698