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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 NOTIMPLEMENTED(); | 454 NOTIMPLEMENTED(); |
455 } | 455 } |
456 }; | 456 }; |
457 | 457 |
458 class FontsLanguagesWindowView { | 458 class FontsLanguagesWindowView { |
459 public: | 459 public: |
460 explicit FontsLanguagesWindowView(Profile* profile) { NOTIMPLEMENTED(); } | 460 explicit FontsLanguagesWindowView(Profile* profile) { NOTIMPLEMENTED(); } |
461 void SelectLanguagesTab() { NOTIMPLEMENTED(); } | 461 void SelectLanguagesTab() { NOTIMPLEMENTED(); } |
462 }; | 462 }; |
463 | 463 |
| 464 #if !defined(TOOLKIT_VIEWS) |
464 class OSExchangeData { | 465 class OSExchangeData { |
465 public: | 466 public: |
466 void SetString(const std::wstring& data) { NOTIMPLEMENTED(); } | 467 void SetString(const std::wstring& data) { NOTIMPLEMENTED(); } |
467 void SetURL(const GURL& url, const std::wstring& title) { NOTIMPLEMENTED(); } | 468 void SetURL(const GURL& url, const std::wstring& title) { NOTIMPLEMENTED(); } |
468 }; | 469 }; |
| 470 #endif |
469 | 471 |
470 class BaseDragSource { | 472 class BaseDragSource { |
471 }; | 473 }; |
472 | 474 |
473 //--------------------------------------------------------------------------- | 475 //--------------------------------------------------------------------------- |
474 // These stubs are for extensions | 476 // These stubs are for extensions |
475 | 477 |
476 namespace views { | 478 namespace views { |
477 class HWNDView { | 479 class HWNDView { |
478 public: | 480 public: |
(...skipping 22 matching lines...) Expand all Loading... |
501 NOTIMPLEMENTED(); | 503 NOTIMPLEMENTED(); |
502 } | 504 } |
503 virtual ~HWNDHtmlView() {} | 505 virtual ~HWNDHtmlView() {} |
504 | 506 |
505 RenderViewHost* render_view_host() { NOTIMPLEMENTED(); return NULL; } | 507 RenderViewHost* render_view_host() { NOTIMPLEMENTED(); return NULL; } |
506 SiteInstance* site_instance() { NOTIMPLEMENTED(); return NULL; } | 508 SiteInstance* site_instance() { NOTIMPLEMENTED(); return NULL; } |
507 }; | 509 }; |
508 | 510 |
509 | 511 |
510 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 512 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
OLD | NEW |