// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_DIALOG_TYPES_H_ #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_DIALOG_TYPES_H_ // The type of download location dialog that should by shown by Android. // A Java counterpart will be generated for this enum. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.download // Recorded in histogram, so do not delete or reuse entries. The values must // match DownloadLocationDialogType in enums.xml. enum class DownloadLocationDialogType { … }; // Result of download location dialog. // Recorded in histogram, so do not delete or reuse entries. The values must // match DownloadLocationDialogResult in enums.xml. enum class DownloadLocationDialogResult { … }; #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_DIALOG_TYPES_H_