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 #include "chrome/browser/ui/webui/active_downloads_ui.h" | 5 #include "chrome/browser/ui/webui/chromeos/active_downloads_ui.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
14 #include "base/file_util.h" | 14 #include "base/file_util.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 return (*it); | 391 return (*it); |
392 } | 392 } |
393 } | 393 } |
394 } | 394 } |
395 return NULL; | 395 return NULL; |
396 } | 396 } |
397 | 397 |
398 const ActiveDownloadsUI::DownloadList& ActiveDownloadsUI::GetDownloads() const { | 398 const ActiveDownloadsUI::DownloadList& ActiveDownloadsUI::GetDownloads() const { |
399 return handler_->downloads(); | 399 return handler_->downloads(); |
400 } | 400 } |
OLD | NEW |