| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // Provides global database of differential decompression dictionaries for the | 5 // Provides global database of differential decompression dictionaries for the |
| 6 // SDCH filter (processes sdch enconded content). | 6 // SDCH filter (processes sdch enconded content). |
| 7 | 7 |
| 8 // Exactly one instance of SdchManager is built, and all references are made | 8 // Exactly one instance of SdchManager is built, and all references are made |
| 9 // into that collection. | 9 // into that collection. |
| 10 // | 10 // |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 // Problematic decode recovery methods. | 116 // Problematic decode recovery methods. |
| 117 META_REFRESH_RECOVERY = 70, // Dictionary not found. | 117 META_REFRESH_RECOVERY = 70, // Dictionary not found. |
| 118 // defunct = 71, // Almost the same as META_REFRESH_UNSUPPORTED. | 118 // defunct = 71, // Almost the same as META_REFRESH_UNSUPPORTED. |
| 119 // defunct = 72, // Almost the same as CACHED_META_REFRESH_UNSUPPORTED. | 119 // defunct = 72, // Almost the same as CACHED_META_REFRESH_UNSUPPORTED. |
| 120 // defunct = 73, // PASSING_THROUGH_NON_SDCH plus DISCARD_TENTATIVE_SDCH. | 120 // defunct = 73, // PASSING_THROUGH_NON_SDCH plus DISCARD_TENTATIVE_SDCH. |
| 121 META_REFRESH_UNSUPPORTED = 74, // Unrecoverable error. | 121 META_REFRESH_UNSUPPORTED = 74, // Unrecoverable error. |
| 122 CACHED_META_REFRESH_UNSUPPORTED = 75, // As above, but pulled from cache. | 122 CACHED_META_REFRESH_UNSUPPORTED = 75, // As above, but pulled from cache. |
| 123 PASSING_THROUGH_NON_SDCH = 76, // Non-html tagged as sdch but malformed. | 123 PASSING_THROUGH_NON_SDCH = 76, // Non-html tagged as sdch but malformed. |
| 124 INCOMPLETE_SDCH_CONTENT = 77, // Last window was not completely decoded. | 124 INCOMPLETE_SDCH_CONTENT = 77, // Last window was not completely decoded. |
| 125 | 125 PASS_THROUGH_404_CODE = 78, // URL not found message passing through. |
| 126 | 126 |
| 127 // Common decoded recovery methods. | 127 // Common decoded recovery methods. |
| 128 META_REFRESH_CACHED_RECOVERY = 80, // Probably startup tab loading. | 128 META_REFRESH_CACHED_RECOVERY = 80, // Probably startup tab loading. |
| 129 DISCARD_TENTATIVE_SDCH = 81, // Server decided not to use sdch. | 129 DISCARD_TENTATIVE_SDCH = 81, // Server decided not to use sdch. |
| 130 | 130 |
| 131 // Non SDCH problems, only accounted for to make stat counting complete | 131 // Non SDCH problems, only accounted for to make stat counting complete |
| 132 // (i.e., be able to be sure all dictionary advertisements are accounted | 132 // (i.e., be able to be sure all dictionary advertisements are accounted |
| 133 // for). | 133 // for). |
| 134 | 134 |
| 135 UNFLUSHED_CONTENT = 90, // Possible error in filter chaining. | 135 UNFLUSHED_CONTENT = 90, // Possible error in filter chaining. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 DomainCounter exponential_blacklist_count; | 352 DomainCounter exponential_blacklist_count; |
| 353 | 353 |
| 354 // List of hostnames for which a latency experiment is allowed (because a | 354 // List of hostnames for which a latency experiment is allowed (because a |
| 355 // round trip test has recently passed). | 355 // round trip test has recently passed). |
| 356 ExperimentSet allow_latency_experiment_; | 356 ExperimentSet allow_latency_experiment_; |
| 357 | 357 |
| 358 DISALLOW_COPY_AND_ASSIGN(SdchManager); | 358 DISALLOW_COPY_AND_ASSIGN(SdchManager); |
| 359 }; | 359 }; |
| 360 | 360 |
| 361 #endif // NET_BASE_SDCH_MANAGER_H_ | 361 #endif // NET_BASE_SDCH_MANAGER_H_ |
| OLD | NEW |