| 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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 }; | 779 }; |
| 780 | 780 |
| 781 namespace printing { | 781 namespace printing { |
| 782 class PrintViewManager { | 782 class PrintViewManager { |
| 783 public: | 783 public: |
| 784 PrintViewManager(WebContents&) { } | 784 PrintViewManager(WebContents&) { } |
| 785 void Stop() { NOTIMPLEMENTED(); } | 785 void Stop() { NOTIMPLEMENTED(); } |
| 786 void Destroy() { NOTIMPLEMENTED(); } | 786 void Destroy() { NOTIMPLEMENTED(); } |
| 787 bool OnRendererGone(RenderViewHost*) { | 787 bool OnRendererGone(RenderViewHost*) { |
| 788 NOTIMPLEMENTED(); | 788 NOTIMPLEMENTED(); |
| 789 return false; | 789 return true; // Assume for now that all renderer crashes are important. |
| 790 } | 790 } |
| 791 void DidGetPrintedPagesCount(int, int) { NOTIMPLEMENTED(); } | 791 void DidGetPrintedPagesCount(int, int) { NOTIMPLEMENTED(); } |
| 792 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params&) { | 792 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params&) { |
| 793 NOTIMPLEMENTED(); | 793 NOTIMPLEMENTED(); |
| 794 } | 794 } |
| 795 }; | 795 }; |
| 796 } | 796 } |
| 797 | 797 |
| 798 class PluginInstaller { | 798 class PluginInstaller { |
| 799 public: | 799 public: |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 } | 910 } |
| 911 }; | 911 }; |
| 912 | 912 |
| 913 class RepostFormWarningDialog { | 913 class RepostFormWarningDialog { |
| 914 public: | 914 public: |
| 915 static void RunRepostFormWarningDialog(NavigationController*) { } | 915 static void RunRepostFormWarningDialog(NavigationController*) { } |
| 916 virtual ~RepostFormWarningDialog() { } | 916 virtual ~RepostFormWarningDialog() { } |
| 917 }; | 917 }; |
| 918 | 918 |
| 919 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 919 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| OLD | NEW |