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 CONTENT_TEST_DOWNLOAD_TEST_OBSERVER_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_DOWNLOAD_TEST_OBSERVER_H_ |
6 #define CONTENT_TEST_DOWNLOAD_TEST_OBSERVER_H_ | 6 #define CONTENT_PUBLIC_TEST_DOWNLOAD_TEST_OBSERVER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "content/public/browser/download_interrupt_reasons.h" | 14 #include "content/public/browser/download_interrupt_reasons.h" |
15 #include "content/public/browser/download_item.h" | 15 #include "content/public/browser/download_item.h" |
16 #include "content/public/browser/download_manager.h" | 16 #include "content/public/browser/download_manager.h" |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 size_t called_back_count_; | 303 size_t called_back_count_; |
304 | 304 |
305 // We are in the message loop. | 305 // We are in the message loop. |
306 bool waiting_; | 306 bool waiting_; |
307 | 307 |
308 DISALLOW_COPY_AND_ASSIGN(DownloadTestItemCreationObserver); | 308 DISALLOW_COPY_AND_ASSIGN(DownloadTestItemCreationObserver); |
309 }; | 309 }; |
310 | 310 |
311 } // namespace content` | 311 } // namespace content` |
312 | 312 |
313 #endif // CONTENT_TEST_DOWNLOAD_TEST_OBSERVER_H_ | 313 #endif // CONTENT_PUBLIC_TEST_DOWNLOAD_TEST_OBSERVER_H_ |
OLD | NEW |