| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 NOTIMPLEMENTED(); | 582 NOTIMPLEMENTED(); |
| 583 return NULL; | 583 return NULL; |
| 584 } | 584 } |
| 585 virtual void ShowHtmlDialog(ModalHtmlDialogDelegate*, void*) { | 585 virtual void ShowHtmlDialog(ModalHtmlDialogDelegate*, void*) { |
| 586 NOTIMPLEMENTED(); | 586 NOTIMPLEMENTED(); |
| 587 } | 587 } |
| 588 virtual bool CanBlur() { | 588 virtual bool CanBlur() { |
| 589 NOTIMPLEMENTED(); | 589 NOTIMPLEMENTED(); |
| 590 return true; | 590 return true; |
| 591 } | 591 } |
| 592 virtual gfx::Rect GetRootWindowResizerRect() const { |
| 593 return gfx::Rect(); |
| 594 } |
| 595 |
| 592 virtual bool IsExternalTabContainer() { | 596 virtual bool IsExternalTabContainer() { |
| 593 NOTIMPLEMENTED(); | 597 NOTIMPLEMENTED(); |
| 594 return false; | 598 return false; |
| 595 } | 599 } |
| 596 virtual void BeforeUnloadFired(WebContents*, bool, bool*) { | 600 virtual void BeforeUnloadFired(WebContents*, bool, bool*) { |
| 597 NOTIMPLEMENTED(); | 601 NOTIMPLEMENTED(); |
| 598 } | 602 } |
| 599 virtual void URLStarredChanged(WebContents*, bool) { NOTIMPLEMENTED(); } | 603 virtual void URLStarredChanged(WebContents*, bool) { NOTIMPLEMENTED(); } |
| 600 virtual void ConvertContentsToApplication(WebContents*) { NOTIMPLEMENTED(); } | 604 virtual void ConvertContentsToApplication(WebContents*) { NOTIMPLEMENTED(); } |
| 601 virtual void ReplaceContents(TabContents*, TabContents*) { NOTIMPLEMENTED(); } | 605 virtual void ReplaceContents(TabContents*, TabContents*) { NOTIMPLEMENTED(); } |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 int render_view_id); | 1216 int render_view_id); |
| 1213 } | 1217 } |
| 1214 | 1218 |
| 1215 class RepostFormWarningDialog { | 1219 class RepostFormWarningDialog { |
| 1216 public: | 1220 public: |
| 1217 static void RunRepostFormWarningDialog(NavigationController*) { } | 1221 static void RunRepostFormWarningDialog(NavigationController*) { } |
| 1218 virtual ~RepostFormWarningDialog() { } | 1222 virtual ~RepostFormWarningDialog() { } |
| 1219 }; | 1223 }; |
| 1220 | 1224 |
| 1221 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 1225 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| OLD | NEW |