| 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/logging.h" | 15 #include "base/logging.h" |
| 16 #include "base/ref_counted.h" | 16 #include "base/ref_counted.h" |
| 17 #include "build/build_config.h" | 17 #include "build/build_config.h" |
| 18 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 18 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
| 19 | 19 |
| 20 #if !defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX) | 20 #if !defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX) |
| 21 // For download_util::DragDownload | 21 // For download_util::DragDownload |
| 22 #include "base/gfx/native_widget_types.h" | 22 #include "app/gfx/native_widget_types.h" |
| 23 #include "third_party/skia/include/core/SkBitmap.h" | 23 #include "third_party/skia/include/core/SkBitmap.h" |
| 24 #endif | 24 #endif |
| 25 | 25 |
| 26 class CancelableTask; | 26 class CancelableTask; |
| 27 class CommandLine; | 27 class CommandLine; |
| 28 class DownloadItem; | 28 class DownloadItem; |
| 29 class TabContents; | 29 class TabContents; |
| 30 struct ViewHostMsg_DidPrintPage_Params; | 30 struct ViewHostMsg_DidPrintPage_Params; |
| 31 | 31 |
| 32 namespace gfx { | 32 namespace gfx { |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 | 139 |
| 140 #endif | 140 #endif |
| 141 | 141 |
| 142 //--------------------------------------------------------------------------- | 142 //--------------------------------------------------------------------------- |
| 143 // These stubs are for TabContents | 143 // These stubs are for TabContents |
| 144 | 144 |
| 145 class BaseDragSource { | 145 class BaseDragSource { |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 148 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| OLD | NEW |