OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ | 4 #ifndef CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ |
5 #define CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ | 5 #define CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <memory> | 10 #include <memory> |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/files/file.h" | 14 #include "base/files/file.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/singleton.h" | 16 #include "base/memory/singleton.h" |
17 #include "base/process/process.h" | 17 #include "base/process/process.h" |
18 #include "base/supports_user_data.h" | |
fgorski
2017/03/28 17:01:12
needed?
Pete Williamson
2017/03/28 18:01:58
Done.
| |
18 #include "content/common/download/mhtml_save_status.h" | 19 #include "content/common/download/mhtml_save_status.h" |
20 #include "content/public/browser/web_contents.h" | |
fgorski
2017/03/28 17:01:12
needed?
Pete Williamson
2017/03/28 18:01:58
Done.
| |
19 #include "content/public/common/mhtml_generation_params.h" | 21 #include "content/public/common/mhtml_generation_params.h" |
20 #include "ipc/ipc_platform_file.h" | 22 #include "ipc/ipc_platform_file.h" |
21 | 23 |
22 namespace base { | 24 namespace base { |
23 class FilePath; | 25 class FilePath; |
24 } | 26 } |
25 | 27 |
26 namespace content { | 28 namespace content { |
27 | 29 |
28 class RenderFrameHostImpl; | 30 class RenderFrameHostImpl; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 std::map<int, std::unique_ptr<Job>> id_to_job_; | 96 std::map<int, std::unique_ptr<Job>> id_to_job_; |
95 | 97 |
96 int next_job_id_; | 98 int next_job_id_; |
97 | 99 |
98 DISALLOW_COPY_AND_ASSIGN(MHTMLGenerationManager); | 100 DISALLOW_COPY_AND_ASSIGN(MHTMLGenerationManager); |
99 }; | 101 }; |
100 | 102 |
101 } // namespace content | 103 } // namespace content |
102 | 104 |
103 #endif // CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ | 105 #endif // CONTENT_BROWSER_DOWNLOAD_MHTML_GENERATION_MANAGER_H_ |
OLD | NEW |