| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 SELECT_FOLDER, | 420 SELECT_FOLDER, |
| 421 SELECT_SAVEAS_FILE, | 421 SELECT_SAVEAS_FILE, |
| 422 SELECT_OPEN_FILE, | 422 SELECT_OPEN_FILE, |
| 423 SELECT_OPEN_MULTI_FILE | 423 SELECT_OPEN_MULTI_FILE |
| 424 }; | 424 }; |
| 425 class Listener { | 425 class Listener { |
| 426 public: | 426 public: |
| 427 }; | 427 }; |
| 428 void ListenerDestroyed() { NOTIMPLEMENTED(); } | 428 void ListenerDestroyed() { NOTIMPLEMENTED(); } |
| 429 void SelectFile(Type, const std::wstring&, const std::wstring&, | 429 void SelectFile(Type, const std::wstring&, const std::wstring&, |
| 430 const std::wstring&, const std::wstring&, gfx::NativeWindow, | 430 const std::wstring&, int, const std::wstring&, |
| 431 void*) { NOTIMPLEMENTED(); } | 431 » » gfx::NativeWindow, void*) { NOTIMPLEMENTED(); } |
| 432 static SelectFileDialog* Create(WebContents*) { | 432 static SelectFileDialog* Create(WebContents*) { |
| 433 NOTIMPLEMENTED(); | 433 NOTIMPLEMENTED(); |
| 434 return new SelectFileDialog; | 434 return new SelectFileDialog; |
| 435 } | 435 } |
| 436 }; | 436 }; |
| 437 #endif | 437 #endif |
| 438 | 438 |
| 439 class DockInfo { | 439 class DockInfo { |
| 440 public: | 440 public: |
| 441 bool GetNewWindowBounds(gfx::Rect*, bool*) const { | 441 bool GetNewWindowBounds(gfx::Rect*, bool*) const { |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 NOTIMPLEMENTED(); | 642 NOTIMPLEMENTED(); |
| 643 } | 643 } |
| 644 virtual ~HWNDHtmlView() {} | 644 virtual ~HWNDHtmlView() {} |
| 645 | 645 |
| 646 RenderViewHost* render_view_host() { NOTIMPLEMENTED(); return NULL; } | 646 RenderViewHost* render_view_host() { NOTIMPLEMENTED(); return NULL; } |
| 647 void InitHidden() { NOTIMPLEMENTED(); } | 647 void InitHidden() { NOTIMPLEMENTED(); } |
| 648 void set_preferred_size(const gfx::Size& size) { NOTIMPLEMENTED(); } | 648 void set_preferred_size(const gfx::Size& size) { NOTIMPLEMENTED(); } |
| 649 }; | 649 }; |
| 650 | 650 |
| 651 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 651 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
| OLD | NEW |