| 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 #ifndef CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 5 #ifndef CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| 6 #define CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 6 #define CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| 7 | 7 |
| 8 // This file provides declarations and stub definitions for classes we encouter | 8 // This file provides declarations and stub definitions for classes we encouter |
| 9 // during the porting effort. It is not meant to be permanent, and classes will | 9 // during the porting effort. It is not meant to be permanent, and classes will |
| 10 // be removed from here as they are fleshed out more completely. | 10 // be removed from here as they are fleshed out more completely. |
| 11 | 11 |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/clipboard.h" | 15 #include "base/clipboard.h" |
| 16 #include "base/file_path.h" | 16 #include "base/file_path.h" |
| 17 #include "base/logging.h" | 17 #include "base/logging.h" |
| 18 #include "base/message_loop.h" | 18 #include "base/message_loop.h" |
| 19 #include "base/ref_counted.h" | 19 #include "base/ref_counted.h" |
| 20 #include "base/gfx/native_widget_types.h" | 20 #include "base/gfx/native_widget_types.h" |
| 21 #include "base/gfx/rect.h" | 21 #include "base/gfx/rect.h" |
| 22 #include "chrome/browser/bookmarks/bookmark_model.h" | |
| 23 #include "chrome/browser/bookmarks/bookmark_service.h" | |
| 24 #include "chrome/browser/browser_process.h" | 22 #include "chrome/browser/browser_process.h" |
| 25 #include "chrome/browser/cache_manager_host.h" | 23 #include "chrome/browser/cache_manager_host.h" |
| 26 #include "chrome/browser/cancelable_request.h" | 24 #include "chrome/browser/cancelable_request.h" |
| 27 #include "chrome/browser/download/save_types.h" | 25 #include "chrome/browser/download/save_types.h" |
| 28 #include "chrome/browser/history/download_types.h" | 26 #include "chrome/browser/history/download_types.h" |
| 29 #include "chrome/browser/history/history.h" | 27 #include "chrome/browser/history/history.h" |
| 30 #include "chrome/browser/renderer_host/resource_handler.h" | 28 #include "chrome/browser/renderer_host/resource_handler.h" |
| 31 #include "chrome/browser/safe_browsing/safe_browsing_util.h" | 29 #include "chrome/browser/safe_browsing/safe_browsing_util.h" |
| 32 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 30 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
| 33 #include "chrome/browser/search_engines/template_url.h" | 31 #include "chrome/browser/search_engines/template_url.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 46 #include "chrome/common/page_transition_types.h" | 44 #include "chrome/common/page_transition_types.h" |
| 47 #include "chrome/common/pref_names.h" | 45 #include "chrome/common/pref_names.h" |
| 48 #include "chrome/common/pref_service.h" | 46 #include "chrome/common/pref_service.h" |
| 49 #include "googleurl/src/gurl.h" | 47 #include "googleurl/src/gurl.h" |
| 50 #include "net/base/load_states.h" | 48 #include "net/base/load_states.h" |
| 51 #include "skia/include/SkBitmap.h" | 49 #include "skia/include/SkBitmap.h" |
| 52 #include "webkit/glue/password_form.h" | 50 #include "webkit/glue/password_form.h" |
| 53 #include "webkit/glue/window_open_disposition.h" | 51 #include "webkit/glue/window_open_disposition.h" |
| 54 | 52 |
| 55 class Browser; | 53 class Browser; |
| 56 class BookmarkService; | |
| 57 class CommandLine; | 54 class CommandLine; |
| 58 class ConstrainedWindow; | 55 class ConstrainedWindow; |
| 59 class DOMUIHost; | 56 class DOMUIHost; |
| 60 class DownloadManager; | 57 class DownloadManager; |
| 61 class HistoryService; | 58 class HistoryService; |
| 62 class LoginHandler; | 59 class LoginHandler; |
| 63 class MetricsService; | 60 class MetricsService; |
| 64 class MixedContentHandler; | 61 class MixedContentHandler; |
| 65 class ModalHtmlDialogDelegate; | 62 class ModalHtmlDialogDelegate; |
| 66 class NavigationController; | 63 class NavigationController; |
| (...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 } | 907 } |
| 911 }; | 908 }; |
| 912 | 909 |
| 913 class RepostFormWarningDialog { | 910 class RepostFormWarningDialog { |
| 914 public: | 911 public: |
| 915 static void RunRepostFormWarningDialog(NavigationController*) { } | 912 static void RunRepostFormWarningDialog(NavigationController*) { } |
| 916 virtual ~RepostFormWarningDialog() { } | 913 virtual ~RepostFormWarningDialog() { } |
| 917 }; | 914 }; |
| 918 | 915 |
| 919 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 916 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| OLD | NEW |