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

Side by Side Diff: chrome/browser/webui/filebrowse_ui.cc

Issue 6532045: WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/webui/filebrowse_ui.h ('k') | chrome/browser/webui/mediaplayer_ui.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/webui/filebrowse_ui.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/message_loop.h" 14 #include "base/message_loop.h"
15 #include "base/path_service.h" 15 #include "base/path_service.h"
16 #include "base/singleton.h" 16 #include "base/singleton.h"
17 #include "base/string_piece.h" 17 #include "base/string_piece.h"
18 #include "base/string_util.h" 18 #include "base/string_util.h"
19 #include "base/threading/thread.h" 19 #include "base/threading/thread.h"
20 #include "base/time.h" 20 #include "base/time.h"
21 #include "base/utf_string_conversions.h" 21 #include "base/utf_string_conversions.h"
22 #include "base/values.h" 22 #include "base/values.h"
23 #include "base/weak_ptr.h" 23 #include "base/weak_ptr.h"
24 #include "chrome/browser/bookmarks/bookmark_model.h" 24 #include "chrome/browser/bookmarks/bookmark_model.h"
25 #include "chrome/browser/browser_thread.h" 25 #include "chrome/browser/browser_thread.h"
26 #include "chrome/browser/dom_ui/mediaplayer_ui.h"
27 #include "chrome/browser/dom_ui/web_ui_favicon_source.h" 26 #include "chrome/browser/dom_ui/web_ui_favicon_source.h"
28 #include "chrome/browser/download/download_item.h" 27 #include "chrome/browser/download/download_item.h"
29 #include "chrome/browser/download/download_manager.h" 28 #include "chrome/browser/download/download_manager.h"
30 #include "chrome/browser/download/download_util.h" 29 #include "chrome/browser/download/download_util.h"
31 #include "chrome/browser/history/history_types.h" 30 #include "chrome/browser/history/history_types.h"
32 #include "chrome/browser/metrics/user_metrics.h" 31 #include "chrome/browser/metrics/user_metrics.h"
33 #include "chrome/browser/profiles/profile.h" 32 #include "chrome/browser/profiles/profile.h"
34 #include "chrome/browser/tab_contents/tab_contents.h" 33 #include "chrome/browser/tab_contents/tab_contents.h"
35 #include "chrome/browser/tabs/tab_strip_model.h" 34 #include "chrome/browser/tabs/tab_strip_model.h"
36 #include "chrome/browser/ui/browser.h" 35 #include "chrome/browser/ui/browser.h"
37 #include "chrome/browser/ui/browser_list.h" 36 #include "chrome/browser/ui/browser_list.h"
38 #include "chrome/browser/ui/browser_navigator.h" 37 #include "chrome/browser/ui/browser_navigator.h"
39 #include "chrome/browser/ui/browser_window.h" 38 #include "chrome/browser/ui/browser_window.h"
39 #include "chrome/browser/webui/mediaplayer_ui.h"
40 #include "chrome/common/chrome_paths.h" 40 #include "chrome/common/chrome_paths.h"
41 #include "chrome/common/chrome_switches.h" 41 #include "chrome/common/chrome_switches.h"
42 #include "chrome/common/jstemplate_builder.h" 42 #include "chrome/common/jstemplate_builder.h"
43 #include "chrome/common/net/url_fetcher.h" 43 #include "chrome/common/net/url_fetcher.h"
44 #include "chrome/common/time_format.h" 44 #include "chrome/common/time_format.h"
45 #include "chrome/common/url_constants.h" 45 #include "chrome/common/url_constants.h"
46 #include "grit/browser_resources.h" 46 #include "grit/browser_resources.h"
47 #include "grit/chromium_strings.h" 47 #include "grit/chromium_strings.h"
48 #include "grit/generated_resources.h" 48 #include "grit/generated_resources.h"
49 #include "grit/locale_settings.h" 49 #include "grit/locale_settings.h"
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 } 1263 }
1264 } 1264 }
1265 1265
1266 return NULL; 1266 return NULL;
1267 } 1267 }
1268 1268
1269 const int FileBrowseUI::kPopupWidth = 250; 1269 const int FileBrowseUI::kPopupWidth = 250;
1270 const int FileBrowseUI::kPopupHeight = 300; 1270 const int FileBrowseUI::kPopupHeight = 300;
1271 const int FileBrowseUI::kSmallPopupWidth = 250; 1271 const int FileBrowseUI::kSmallPopupWidth = 250;
1272 const int FileBrowseUI::kSmallPopupHeight = 50; 1272 const int FileBrowseUI::kSmallPopupHeight = 50;
OLDNEW
« no previous file with comments | « chrome/browser/webui/filebrowse_ui.h ('k') | chrome/browser/webui/mediaplayer_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698