| Index: components/download/public/clients.h
|
| diff --git a/components/download/public/clients.h b/components/download/public/clients.h
|
| index 7ce237823d04496edc1fa9ad7aca4014229a9c88..a464d212017efb76b1014a244d317b62e2a05642 100644
|
| --- a/components/download/public/clients.h
|
| +++ b/components/download/public/clients.h
|
| @@ -16,11 +16,16 @@ namespace download {
|
| // download with the right client.
|
| enum class DownloadClient {
|
| // Represents an uninitialized DownloadClient variable.
|
| - DOWNLOAD_CLIENT_INVALID = 0,
|
| + INVALID = 0,
|
|
|
| - DOWNLOAD_CLIENT_OFFLINE_PAGE_PREFETCH = 1,
|
| + // Test client values. Meant to be used by the testing framework and not
|
| + // production code. Callers will be unable to access the DownloadService with
|
| + // these test APIs.
|
| + TEST = 1,
|
|
|
| - DOWNLOAD_CLIENT_BOUNDARY = 2,
|
| + OFFLINE_PAGE_PREFETCH = 2,
|
| +
|
| + BOUNDARY = 3,
|
| };
|
|
|
| } // namespace download
|
|
|