| 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_HISTORY_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_HISTORY_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_HISTORY_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_HISTORY_UI_H_ |
| 7 | 7 |
| 8 #include "base/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "base/timer.h" | 9 #include "base/timer.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "chrome/browser/common/cancelable_request.h" | 11 #include "chrome/browser/common/cancelable_request.h" |
| 12 #include "chrome/browser/history/history_service.h" | 12 #include "chrome/browser/history/history_service.h" |
| 13 #include "chrome/browser/history/web_history_service.h" | 13 #include "chrome/browser/history/web_history_service.h" |
| 14 #include "chrome/common/cancelable_task_tracker.h" | 14 #include "chrome/common/cancelable_task_tracker.h" |
| 15 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
| 16 #include "content/public/browser/web_ui_controller.h" | 16 #include "content/public/browser/web_ui_controller.h" |
| 17 #include "content/public/browser/web_ui_message_handler.h" | 17 #include "content/public/browser/web_ui_message_handler.h" |
| 18 | 18 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 static const GURL GetHistoryURLWithSearchText(const string16& text); | 210 static const GURL GetHistoryURLWithSearchText(const string16& text); |
| 211 | 211 |
| 212 static base::RefCountedMemory* GetFaviconResourceBytes( | 212 static base::RefCountedMemory* GetFaviconResourceBytes( |
| 213 ui::ScaleFactor scale_factor); | 213 ui::ScaleFactor scale_factor); |
| 214 | 214 |
| 215 private: | 215 private: |
| 216 DISALLOW_COPY_AND_ASSIGN(HistoryUI); | 216 DISALLOW_COPY_AND_ASSIGN(HistoryUI); |
| 217 }; | 217 }; |
| 218 | 218 |
| 219 #endif // CHROME_BROWSER_UI_WEBUI_HISTORY_UI_H_ | 219 #endif // CHROME_BROWSER_UI_WEBUI_HISTORY_UI_H_ |
| OLD | NEW |