| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "temp_scaffolding_stubs.h" | 5 #include "temp_scaffolding_stubs.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/thread.h" | 13 #include "base/thread.h" |
| 14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
| 15 #include "base/string_piece.h" | 15 #include "base/string_piece.h" |
| 16 #include "base/singleton.h" | 16 #include "base/singleton.h" |
| 17 #include "base/task.h" | 17 #include "base/task.h" |
| 18 #include "chrome/browser/autocomplete/history_url_provider.h" | 18 #include "chrome/browser/autocomplete/history_url_provider.h" |
| 19 #include "chrome/browser/bookmarks/bookmark_utils.h" | 19 #include "chrome/browser/bookmarks/bookmark_utils.h" |
| 20 #include "chrome/browser/browser.h" | 20 #include "chrome/browser/browser.h" |
| 21 #include "chrome/browser/browser_shutdown.h" | 21 #include "chrome/browser/browser_shutdown.h" |
| 22 #include "chrome/browser/cache_manager_host.h" | 22 #include "chrome/browser/cache_manager_host.h" |
| 23 #include "chrome/browser/debugger/debugger_shell.h" | 23 #include "chrome/browser/debugger/debugger_shell.h" |
| 24 #include "chrome/browser/dom_ui/dom_ui.h" |
| 24 #include "chrome/browser/download/download_request_dialog_delegate.h" | 25 #include "chrome/browser/download/download_request_dialog_delegate.h" |
| 25 #include "chrome/browser/download/download_request_manager.h" | 26 #include "chrome/browser/download/download_request_manager.h" |
| 26 #include "chrome/browser/first_run.h" | 27 #include "chrome/browser/first_run.h" |
| 27 #include "chrome/browser/history/in_memory_history_backend.h" | 28 #include "chrome/browser/history/in_memory_history_backend.h" |
| 28 #include "chrome/browser/memory_details.h" | 29 #include "chrome/browser/memory_details.h" |
| 29 #include "chrome/browser/profile_manager.h" | 30 #include "chrome/browser/profile_manager.h" |
| 30 #include "chrome/browser/renderer_host/render_widget_helper.h" | 31 #include "chrome/browser/renderer_host/render_widget_helper.h" |
| 31 #include "chrome/browser/renderer_host/resource_message_filter.h" | 32 #include "chrome/browser/renderer_host/resource_message_filter.h" |
| 32 #include "chrome/browser/rlz/rlz.h" | 33 #include "chrome/browser/rlz/rlz.h" |
| 33 #include "chrome/browser/search_engines/template_url_prepopulate_data.h" | 34 #include "chrome/browser/search_engines/template_url_prepopulate_data.h" |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 return NULL; | 461 return NULL; |
| 461 } | 462 } |
| 462 | 463 |
| 463 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( | 464 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( |
| 464 TabContents* tab, | 465 TabContents* tab, |
| 465 DownloadRequestManager::TabDownloadState* host) { | 466 DownloadRequestManager::TabDownloadState* host) { |
| 466 NOTIMPLEMENTED(); | 467 NOTIMPLEMENTED(); |
| 467 return NULL; | 468 return NULL; |
| 468 } | 469 } |
| 469 | 470 |
| 471 DOMMessageHandler::~DOMMessageHandler() { |
| 472 NOTIMPLEMENTED(); |
| 473 } |
| OLD | NEW |