| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BOOKMARKS_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_VIRTUAL_KEYBOARD_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_BOOKMARKS_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_VIRTUAL_KEYBOARD_UI_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "content/public/browser/url_data_source.h" | 11 #include "content/public/browser/url_data_source.h" |
| 12 #include "content/public/browser/web_ui_controller.h" | 12 #include "content/public/browser/web_ui_controller.h" |
| 13 #include "ui/base/layout.h" | 13 #include "ui/base/layout.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class RefCountedMemory; | 16 class RefCountedMemory; |
| 17 } | 17 } |
| 18 | 18 |
| 19 // This class provides the source for chrome://bookmarks/ | 19 // This class provides the source for chrome://keyboard/ |
| 20 class BookmarksUIHTMLSource : public content::URLDataSource { | 20 class VirtualKeyboardUIHTMLSource : public content::URLDataSource { |
| 21 public: | 21 public: |
| 22 BookmarksUIHTMLSource(); | 22 VirtualKeyboardUIHTMLSource(); |
| 23 | 23 |
| 24 // content::URLDataSource implementation. | 24 // content::URLDataSource implementation. |
| 25 virtual std::string GetSource() OVERRIDE; | 25 virtual std::string GetSource() OVERRIDE; |
| 26 virtual void StartDataRequest( | 26 virtual void StartDataRequest( |
| 27 const std::string& path, | 27 const std::string& path, |
| 28 bool is_incognito, | 28 bool is_incognito, |
| 29 const content::URLDataSource::GotDataCallback& callback) OVERRIDE; | 29 const content::URLDataSource::GotDataCallback& callback) OVERRIDE; |
| 30 virtual std::string GetMimeType(const std::string& path) const OVERRIDE; | 30 virtual std::string GetMimeType(const std::string& path) const OVERRIDE; |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 virtual ~BookmarksUIHTMLSource(); | 33 virtual ~VirtualKeyboardUIHTMLSource(); |
| 34 | 34 |
| 35 DISALLOW_COPY_AND_ASSIGN(BookmarksUIHTMLSource); | 35 DISALLOW_COPY_AND_ASSIGN(VirtualKeyboardUIHTMLSource); |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 // This class is used to hook up chrome://bookmarks/ which in turn gets | 38 // This class is used to hook up chrome://keyboard/ which in turn gets |
| 39 // overridden by an extension. | 39 // overridden by an extension. |
| 40 class BookmarksUI : public content::WebUIController { | 40 class VirtualKeyboardUI : public content::WebUIController { |
| 41 public: | 41 public: |
| 42 explicit BookmarksUI(content::WebUI* web_ui); | 42 explicit VirtualKeyboardUI(content::WebUI* web_ui); |
| 43 | |
| 44 static base::RefCountedMemory* GetFaviconResourceBytes( | |
| 45 ui::ScaleFactor scale_factor); | |
| 46 | 43 |
| 47 private: | 44 private: |
| 48 DISALLOW_COPY_AND_ASSIGN(BookmarksUI); | 45 DISALLOW_COPY_AND_ASSIGN(VirtualKeyboardUI); |
| 49 }; | 46 }; |
| 50 | 47 |
| 51 #endif // CHROME_BROWSER_UI_WEBUI_BOOKMARKS_UI_H_ | 48 #endif // CHROME_BROWSER_UI_WEBUI_VIRTUAL_KEYBOARD_UI_H_ |
| OLD | NEW |