| OLD | NEW |
| 1 // Copyright (c) 2010 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_FILEBROWSE_UI_H_ | 5 #ifndef CHROME_BROWSER_WEBUI_FILEBROWSE_UI_H_ |
| 6 #define CHROME_BROWSER_DOM_UI_FILEBROWSE_UI_H_ | 6 #define CHROME_BROWSER_WEBUI_FILEBROWSE_UI_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 11 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| 12 #include "chrome/browser/dom_ui/html_dialog_ui.h" | 12 #include "chrome/browser/dom_ui/html_dialog_ui.h" |
| 13 #include "chrome/browser/history/history.h" | 13 #include "chrome/browser/history/history.h" |
| 14 #include "net/base/directory_lister.h" | 14 #include "net/base/directory_lister.h" |
| 15 | 15 |
| 16 class Browser; | 16 class Browser; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 const std::string& hashArgument, | 29 const std::string& hashArgument, |
| 30 int width, | 30 int width, |
| 31 int height); | 31 int height); |
| 32 static Browser* GetPopupForPath(const std::string& path, | 32 static Browser* GetPopupForPath(const std::string& path, |
| 33 Profile* profile); | 33 Profile* profile); |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 DISALLOW_COPY_AND_ASSIGN(FileBrowseUI); | 36 DISALLOW_COPY_AND_ASSIGN(FileBrowseUI); |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 #endif // CHROME_BROWSER_DOM_UI_FILEBROWSE_UI_H_ | 39 #endif // CHROME_BROWSER_WEBUI_FILEBROWSE_UI_H_ |
| OLD | NEW |