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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 return GURL(); | 732 return GURL(); |
733 } | 733 } |
734 }; | 734 }; |
735 | 735 |
736 class OSExchangeData { | 736 class OSExchangeData { |
737 public: | 737 public: |
738 void SetString(const std::wstring& data) { NOTIMPLEMENTED(); } | 738 void SetString(const std::wstring& data) { NOTIMPLEMENTED(); } |
739 void SetURL(const GURL& url, const std::wstring& title) { NOTIMPLEMENTED(); } | 739 void SetURL(const GURL& url, const std::wstring& title) { NOTIMPLEMENTED(); } |
740 }; | 740 }; |
741 | 741 |
| 742 class BaseDragSource { |
| 743 }; |
| 744 |
742 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 745 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
OLD | NEW |