OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/dom_ui/filebrowse_ui.h" | 5 #include "chrome/browser/dom_ui/filebrowse_ui.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "chrome/browser/browser.h" | 22 #include "chrome/browser/browser.h" |
23 #include "chrome/browser/browser_list.h" | 23 #include "chrome/browser/browser_list.h" |
24 #include "chrome/browser/browser_window.h" | 24 #include "chrome/browser/browser_window.h" |
25 #include "chrome/browser/chrome_thread.h" | 25 #include "chrome/browser/chrome_thread.h" |
26 #include "chrome/browser/dom_ui/dom_ui_favicon_source.h" | 26 #include "chrome/browser/dom_ui/dom_ui_favicon_source.h" |
27 #include "chrome/browser/download/download_item.h" | 27 #include "chrome/browser/download/download_item.h" |
28 #include "chrome/browser/download/download_manager.h" | 28 #include "chrome/browser/download/download_manager.h" |
29 #include "chrome/browser/download/download_util.h" | 29 #include "chrome/browser/download/download_util.h" |
30 #include "chrome/browser/history/history_types.h" | 30 #include "chrome/browser/history/history_types.h" |
31 #include "chrome/browser/metrics/user_metrics.h" | 31 #include "chrome/browser/metrics/user_metrics.h" |
32 #include "chrome/browser/pref_service.h" | 32 #include "chrome/browser/prefs/pref_service.h" |
33 #include "chrome/browser/profile.h" | 33 #include "chrome/browser/profile.h" |
34 #include "chrome/browser/tab_contents/tab_contents.h" | 34 #include "chrome/browser/tab_contents/tab_contents.h" |
35 #include "chrome/browser/dom_ui/mediaplayer_ui.h" | 35 #include "chrome/browser/dom_ui/mediaplayer_ui.h" |
36 #include "chrome/common/chrome_paths.h" | 36 #include "chrome/common/chrome_paths.h" |
37 #include "chrome/common/jstemplate_builder.h" | 37 #include "chrome/common/jstemplate_builder.h" |
38 #include "chrome/common/net/url_fetcher.h" | 38 #include "chrome/common/net/url_fetcher.h" |
39 #include "chrome/common/pref_names.h" | 39 #include "chrome/common/pref_names.h" |
40 #include "chrome/common/time_format.h" | 40 #include "chrome/common/time_format.h" |
41 #include "chrome/common/url_constants.h" | 41 #include "chrome/common/url_constants.h" |
42 #include "net/base/escape.h" | 42 #include "net/base/escape.h" |
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1030 } | 1030 } |
1031 } | 1031 } |
1032 | 1032 |
1033 return NULL; | 1033 return NULL; |
1034 } | 1034 } |
1035 | 1035 |
1036 const int FileBrowseUI::kPopupWidth = 250; | 1036 const int FileBrowseUI::kPopupWidth = 250; |
1037 const int FileBrowseUI::kPopupHeight = 300; | 1037 const int FileBrowseUI::kPopupHeight = 300; |
1038 const int FileBrowseUI::kSmallPopupWidth = 250; | 1038 const int FileBrowseUI::kSmallPopupWidth = 250; |
1039 const int FileBrowseUI::kSmallPopupHeight = 50; | 1039 const int FileBrowseUI::kSmallPopupHeight = 50; |
OLD | NEW |