| OLD | NEW |
| 1 // Copyright 2015 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.regexp.shared.MatchResult; | 7 import com.google.gwt.regexp.shared.MatchResult; |
| 8 import com.google.gwt.regexp.shared.RegExp; | 8 import com.google.gwt.regexp.shared.RegExp; |
| 9 | 9 |
| 10 import java.util.ArrayList; | 10 import java.util.ArrayList; |
| 11 import java.util.Arrays; | |
| 12 import java.util.Collections; | 11 import java.util.Collections; |
| 13 import java.util.HashMap; | 12 import java.util.HashMap; |
| 14 import java.util.HashSet; | 13 import java.util.HashSet; |
| 15 import java.util.List; | 14 import java.util.List; |
| 16 import java.util.Map; | 15 import java.util.Map; |
| 17 import java.util.Set; | 16 import java.util.Set; |
| 18 | 17 |
| 19 /** | 18 /** |
| 20 * Background: | 19 * Background: |
| 21 * The long article/news/forum thread/blog document may be partitioned into se
veral partial pages | 20 * The long article/news/forum thread/blog document may be partitioned into se
veral partial pages |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 sBadPageParamNames.add("subscriptions"); | 473 sBadPageParamNames.add("subscriptions"); |
| 475 sBadPageParamNames.add("tag"); | 474 sBadPageParamNames.add("tag"); |
| 476 sBadPageParamNames.add("tags"); | 475 sBadPageParamNames.add("tags"); |
| 477 sBadPageParamNames.add("video"); | 476 sBadPageParamNames.add("video"); |
| 478 sBadPageParamNames.add("videos"); | 477 sBadPageParamNames.add("videos"); |
| 479 sBadPageParamNames.add("w"); | 478 sBadPageParamNames.add("w"); |
| 480 sBadPageParamNames.add("wiki"); | 479 sBadPageParamNames.add("wiki"); |
| 481 } | 480 } |
| 482 | 481 |
| 483 } | 482 } |
| OLD | NEW |