| OLD | NEW |
| 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_UI_WEBUI_FILEICON_SOURCE_CROS_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_FILEICON_SOURCE_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_FILEICON_SOURCE_CROS_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_FILEICON_SOURCE_CHROMEOS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | 11 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 12 | 12 |
| 13 namespace net { | 13 namespace net { |
| 14 class URLRequest; | 14 class URLRequest; |
| 15 class URLRequestJob; | 15 class URLRequestJob; |
| 16 } // namespace net | 16 } // namespace net |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 bool is_incognito, | 29 bool is_incognito, |
| 30 int request_id) OVERRIDE; | 30 int request_id) OVERRIDE; |
| 31 virtual std::string GetMimeType(const std::string&) const OVERRIDE; | 31 virtual std::string GetMimeType(const std::string&) const OVERRIDE; |
| 32 | 32 |
| 33 private: | 33 private: |
| 34 virtual ~FileIconSourceCros(); | 34 virtual ~FileIconSourceCros(); |
| 35 | 35 |
| 36 DISALLOW_COPY_AND_ASSIGN(FileIconSourceCros); | 36 DISALLOW_COPY_AND_ASSIGN(FileIconSourceCros); |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 #endif // CHROME_BROWSER_UI_WEBUI_FILEICON_SOURCE_CROS_H_ | 39 #endif // CHROME_BROWSER_UI_WEBUI_FILEICON_SOURCE_CHROMEOS_H_ |
| 40 | 40 |
| OLD | NEW |