| 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. |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 public: | 149 public: |
| 150 void Init() { NOTIMPLEMENTED(); } | 150 void Init() { NOTIMPLEMENTED(); } |
| 151 }; | 151 }; |
| 152 | 152 |
| 153 } // namespace sandbox | 153 } // namespace sandbox |
| 154 | 154 |
| 155 struct ViewHostMsg_DidPrintPage_Params; | 155 struct ViewHostMsg_DidPrintPage_Params; |
| 156 | 156 |
| 157 namespace views { | 157 namespace views { |
| 158 | 158 |
| 159 class AcceleratorHandler { | |
| 160 }; | |
| 161 | |
| 162 #if !defined(TOOLKIT_VIEWS) | 159 #if !defined(TOOLKIT_VIEWS) |
| 163 class MenuItemView { | 160 class MenuItemView { |
| 164 public: | 161 public: |
| 165 enum Type { | 162 enum Type { |
| 166 NORMAL, | 163 NORMAL, |
| 167 SUBMENU, | 164 SUBMENU, |
| 168 CHECKBOX, | 165 CHECKBOX, |
| 169 RADIO, | 166 RADIO, |
| 170 SEPARATOR | 167 SEPARATOR |
| 171 }; | 168 }; |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 void SchedulePaint() { NOTIMPLEMENTED(); } | 414 void SchedulePaint() { NOTIMPLEMENTED(); } |
| 418 HWNDView* GetParent() const { NOTIMPLEMENTED(); return NULL; } | 415 HWNDView* GetParent() const { NOTIMPLEMENTED(); return NULL; } |
| 419 virtual gfx::Size GetPreferredSize() { NOTIMPLEMENTED(); return gfx::Size(); } | 416 virtual gfx::Size GetPreferredSize() { NOTIMPLEMENTED(); return gfx::Size(); } |
| 420 gfx::NativeWindow GetHWND() { NOTIMPLEMENTED(); return 0; } | 417 gfx::NativeWindow GetHWND() { NOTIMPLEMENTED(); return 0; } |
| 421 void Detach() { NOTIMPLEMENTED(); } | 418 void Detach() { NOTIMPLEMENTED(); } |
| 422 gfx::Widget* GetWidget() { NOTIMPLEMENTED(); return NULL; } | 419 gfx::Widget* GetWidget() { NOTIMPLEMENTED(); return NULL; } |
| 423 }; | 420 }; |
| 424 } // namespace views | 421 } // namespace views |
| 425 | 422 |
| 426 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 423 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| OLD | NEW |