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

Side by Side Diff: chrome/browser/webui/downloads_dom_handler.h

Issue 6538053: WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5. (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
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 #ifndef CHROME_BROWSER_DOM_UI_DOWNLOADS_DOM_HANDLER_H_ 5 #ifndef CHROME_BROWSER_WEBUI_DOWNLOADS_DOM_HANDLER_H_
6 #define CHROME_BROWSER_DOM_UI_DOWNLOADS_DOM_HANDLER_H_ 6 #define CHROME_BROWSER_WEBUI_DOWNLOADS_DOM_HANDLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/scoped_callback_factory.h" 11 #include "base/scoped_callback_factory.h"
12 #include "chrome/browser/download/download_item.h" 12 #include "chrome/browser/download/download_item.h"
13 #include "chrome/browser/download/download_manager.h" 13 #include "chrome/browser/download/download_manager.h"
14 #include "chrome/browser/webui/web_ui.h" 14 #include "chrome/browser/webui/web_ui.h"
15 15
16 class ListValue; 16 class ListValue;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 // DownloadManager. DownloadManager owns the DownloadItems. The vector is 93 // DownloadManager. DownloadManager owns the DownloadItems. The vector is
94 // kept in order, sorted by ascending start time. 94 // kept in order, sorted by ascending start time.
95 typedef std::vector<DownloadItem*> OrderedDownloads; 95 typedef std::vector<DownloadItem*> OrderedDownloads;
96 OrderedDownloads download_items_; 96 OrderedDownloads download_items_;
97 97
98 base::ScopedCallbackFactory<DownloadsDOMHandler> callback_factory_; 98 base::ScopedCallbackFactory<DownloadsDOMHandler> callback_factory_;
99 99
100 DISALLOW_COPY_AND_ASSIGN(DownloadsDOMHandler); 100 DISALLOW_COPY_AND_ASSIGN(DownloadsDOMHandler);
101 }; 101 };
102 102
103 #endif // CHROME_BROWSER_DOM_UI_DOWNLOADS_DOM_HANDLER_H_ 103 #endif // CHROME_BROWSER_WEBUI_DOWNLOADS_DOM_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/webui/constrained_html_ui.cc ('k') | chrome/browser/webui/downloads_dom_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698