| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 class TabContents; | 68 class TabContents; |
| 69 struct ThumbnailScore; | 69 struct ThumbnailScore; |
| 70 class Task; | 70 class Task; |
| 71 class TemplateURL; | 71 class TemplateURL; |
| 72 class TemplateURLRef; | 72 class TemplateURLRef; |
| 73 class URLRequest; | 73 class URLRequest; |
| 74 class URLRequestContext; | 74 class URLRequestContext; |
| 75 class UserScriptMaster; | 75 class UserScriptMaster; |
| 76 class VisitedLinkMaster; | 76 class VisitedLinkMaster; |
| 77 class WebContents; | 77 class WebContents; |
| 78 struct WebPluginGeometry; |
| 78 class WebPreferences; | 79 class WebPreferences; |
| 79 | 80 |
| 80 namespace IPC { | 81 namespace IPC { |
| 81 class Message; | 82 class Message; |
| 82 } | 83 } |
| 83 | 84 |
| 84 namespace net { | 85 namespace net { |
| 85 class AuthChallengeInfo; | 86 class AuthChallengeInfo; |
| 86 class IOBuffer; | 87 class IOBuffer; |
| 87 class X509Certificate; | 88 class X509Certificate; |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 public: | 424 public: |
| 424 void Init() { NOTIMPLEMENTED(); } | 425 void Init() { NOTIMPLEMENTED(); } |
| 425 }; | 426 }; |
| 426 | 427 |
| 427 } // namespace sandbox | 428 } // namespace sandbox |
| 428 | 429 |
| 429 class IconManager { | 430 class IconManager { |
| 430 }; | 431 }; |
| 431 | 432 |
| 432 struct ViewHostMsg_DidPrintPage_Params; | 433 struct ViewHostMsg_DidPrintPage_Params; |
| 433 struct ViewHostMsg_FrameNavigate_Params; | |
| 434 | 434 |
| 435 class DebuggerWrapper : public base::RefCountedThreadSafe<DebuggerWrapper> { | 435 class DebuggerWrapper : public base::RefCountedThreadSafe<DebuggerWrapper> { |
| 436 public: | 436 public: |
| 437 explicit DebuggerWrapper(int port) {} | 437 explicit DebuggerWrapper(int port) {} |
| 438 void DebugMessage(const std::wstring&) {} | 438 void DebugMessage(const std::wstring&) {} |
| 439 void OnDebugAttach() {} | 439 void OnDebugAttach() {} |
| 440 void OnDebugDisconnect() {} | 440 void OnDebugDisconnect() {} |
| 441 }; | 441 }; |
| 442 | 442 |
| 443 namespace views { | 443 namespace views { |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1145 int render_view_id); | 1145 int render_view_id); |
| 1146 } | 1146 } |
| 1147 | 1147 |
| 1148 class RepostFormWarningDialog { | 1148 class RepostFormWarningDialog { |
| 1149 public: | 1149 public: |
| 1150 static void RunRepostFormWarningDialog(NavigationController*) { } | 1150 static void RunRepostFormWarningDialog(NavigationController*) { } |
| 1151 virtual ~RepostFormWarningDialog() { } | 1151 virtual ~RepostFormWarningDialog() { } |
| 1152 }; | 1152 }; |
| 1153 | 1153 |
| 1154 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 1154 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| OLD | NEW |