OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |