Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1843)

Side by Side Diff: content/browser/download/drag_download_file_browsertest.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "base/files/file_path.h" 5 #include "base/files/file_path.h"
6 #include "base/files/scoped_temp_dir.h" 6 #include "base/files/scoped_temp_dir.h"
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/message_loop/message_loop.h"
9 #include "base/threading/sequenced_worker_pool.h" 10 #include "base/threading/sequenced_worker_pool.h"
10 #include "content/browser/download/download_file_factory.h" 11 #include "content/browser/download/download_file_factory.h"
11 #include "content/browser/download/download_file_impl.h" 12 #include "content/browser/download/download_file_impl.h"
12 #include "content/browser/download/download_item_impl.h" 13 #include "content/browser/download/download_item_impl.h"
13 #include "content/browser/download/download_manager_impl.h" 14 #include "content/browser/download/download_manager_impl.h"
14 #include "content/browser/download/drag_download_file.h" 15 #include "content/browser/download/drag_download_file.h"
15 #include "content/browser/download/drag_download_util.h" 16 #include "content/browser/download/drag_download_util.h"
16 #include "content/browser/web_contents/web_contents_impl.h" 17 #include "content/browser/web_contents/web_contents_impl.h"
17 #include "content/public/browser/content_browser_client.h" 18 #include "content/public/browser/content_browser_client.h"
18 #include "content/public/common/content_client.h" 19 #include "content/public/common/content_client.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 .WillOnce(InvokeWithoutArgs(this, &DragDownloadFileTest::Succeed)); 127 .WillOnce(InvokeWithoutArgs(this, &DragDownloadFileTest::Succeed));
127 ON_CALL(*observer.get(), OnDownloadAborted()) 128 ON_CALL(*observer.get(), OnDownloadAborted())
128 .WillByDefault(InvokeWithoutArgs(this, &DragDownloadFileTest::FailFast)); 129 .WillByDefault(InvokeWithoutArgs(this, &DragDownloadFileTest::FailFast));
129 file->Start(observer.get()); 130 file->Start(observer.get());
130 RunMessageLoop(); 131 RunMessageLoop();
131 } 132 }
132 133
133 // TODO(benjhayden): Test Stop(). 134 // TODO(benjhayden): Test Stop().
134 135
135 } // namespace content 136 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698