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/file_path.h" | |
16 #include "base/logging.h" | 15 #include "base/logging.h" |
17 #include "base/ref_counted.h" | 16 #include "base/ref_counted.h" |
18 #include "base/string16.h" | 17 #include "base/string16.h" |
19 #include "base/gfx/native_widget_types.h" | 18 #include "base/gfx/native_widget_types.h" |
20 #include "build/build_config.h" | 19 #include "build/build_config.h" |
21 #include "chrome/browser/cancelable_request.h" | |
22 #include "chrome/browser/dom_ui/html_dialog_ui.h" | 20 #include "chrome/browser/dom_ui/html_dialog_ui.h" |
23 #include "chrome/browser/tab_contents/navigation_entry.h" | 21 #include "chrome/browser/tab_contents/navigation_entry.h" |
24 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
25 #include "third_party/skia/include/core/SkBitmap.h" | 23 #include "third_party/skia/include/core/SkBitmap.h" |
26 | 24 |
27 class BookmarkContextMenu; | 25 class BookmarkContextMenu; |
28 class BookmarkNode; | 26 class BookmarkNode; |
29 class Browser; | 27 class Browser; |
30 class CommandLine; | 28 class CommandLine; |
31 class DownloadItem; | 29 class DownloadItem; |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 void SchedulePaint() { NOTIMPLEMENTED(); } | 475 void SchedulePaint() { NOTIMPLEMENTED(); } |
478 HWNDView* GetParent() const { NOTIMPLEMENTED(); return NULL; } | 476 HWNDView* GetParent() const { NOTIMPLEMENTED(); return NULL; } |
479 virtual gfx::Size GetPreferredSize() { NOTIMPLEMENTED(); return gfx::Size(); } | 477 virtual gfx::Size GetPreferredSize() { NOTIMPLEMENTED(); return gfx::Size(); } |
480 gfx::NativeWindow GetHWND() { NOTIMPLEMENTED(); return 0; } | 478 gfx::NativeWindow GetHWND() { NOTIMPLEMENTED(); return 0; } |
481 void Detach() { NOTIMPLEMENTED(); } | 479 void Detach() { NOTIMPLEMENTED(); } |
482 gfx::Widget* GetWidget() { NOTIMPLEMENTED(); return NULL; } | 480 gfx::Widget* GetWidget() { NOTIMPLEMENTED(); return NULL; } |
483 }; | 481 }; |
484 } // namespace views | 482 } // namespace views |
485 | 483 |
486 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 484 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
OLD | NEW |