Index: chrome/browser/chromeos/policy/system_log_uploader.h |
diff --git a/chrome/browser/chromeos/policy/system_log_uploader.h b/chrome/browser/chromeos/policy/system_log_uploader.h |
index db3a260b06970f71e3135d70b15dfbe032fad839..35d78ae5e07ef528d649b73804b99bb5a7f4845c 100644 |
--- a/chrome/browser/chromeos/policy/system_log_uploader.h |
+++ b/chrome/browser/chromeos/policy/system_log_uploader.h |
@@ -28,6 +28,16 @@ class SystemLogUploader : public UploadJob::Delegate { |
// from the disk binary file data). |
typedef std::vector<std::pair<std::string, std::string>> SystemLogs; |
+ // Refresh constants. |
+ static const int64 kDefaultUploadDelayMs; |
+ static const int64 kErrorUploadDelayMs; |
+ |
+ // Http header constants to upload. |
+ static const char* const kNameFieldTemplate; |
+ static const char* const kFileTypeHeaderName; |
+ static const char* const kFileTypeLogFile; |
+ static const char* const kContentTypePlainText; |
+ |
// A delegate interface used by SystemLogUploader to read the system logs |
// from the disk and create an upload job. |
class Delegate { |