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 | 4 |
5 #ifndef CHROME_BROWSER_IMAGE_DECODER_H_ | 5 #ifndef CHROME_BROWSER_IMAGE_DECODER_H_ |
6 #define CHROME_BROWSER_IMAGE_DECODER_H_ | 6 #define CHROME_BROWSER_IMAGE_DECODER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/sequence_checker.h" | 16 #include "base/sequence_checker.h" |
16 #include "base/sequenced_task_runner.h" | 17 #include "base/sequenced_task_runner.h" |
17 #include "base/synchronization/lock.h" | 18 #include "base/synchronization/lock.h" |
18 #include "base/timer/timer.h" | 19 #include "base/timer/timer.h" |
19 #include "build/build_config.h" | 20 #include "build/build_config.h" |
20 #include "content/public/browser/utility_process_host.h" | 21 #include "content/public/browser/utility_process_host.h" |
21 #include "content/public/browser/utility_process_host_client.h" | 22 #include "content/public/browser/utility_process_host_client.h" |
22 | 23 |
23 class SkBitmap; | 24 class SkBitmap; |
24 | 25 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 base::WeakPtr<content::UtilityProcessHost> utility_process_host_; | 153 base::WeakPtr<content::UtilityProcessHost> utility_process_host_; |
153 | 154 |
154 // Calls StopBatchMode() after |kBatchModeTimeoutSeconds| have elapsed, | 155 // Calls StopBatchMode() after |kBatchModeTimeoutSeconds| have elapsed, |
155 // unless a new decoding request resets the timer. | 156 // unless a new decoding request resets the timer. |
156 scoped_ptr<base::DelayTimer> batch_mode_timer_; | 157 scoped_ptr<base::DelayTimer> batch_mode_timer_; |
157 | 158 |
158 DISALLOW_COPY_AND_ASSIGN(ImageDecoder); | 159 DISALLOW_COPY_AND_ASSIGN(ImageDecoder); |
159 }; | 160 }; |
160 | 161 |
161 #endif // CHROME_BROWSER_IMAGE_DECODER_H_ | 162 #endif // CHROME_BROWSER_IMAGE_DECODER_H_ |
OLD | NEW |