| 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 #include "temp_scaffolding_stubs.h" | 5 #include "temp_scaffolding_stubs.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 return NULL; | 406 return NULL; |
| 407 } | 407 } |
| 408 | 408 |
| 409 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( | 409 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( |
| 410 TabContents* tab, | 410 TabContents* tab, |
| 411 DownloadRequestManager::TabDownloadState* host) { | 411 DownloadRequestManager::TabDownloadState* host) { |
| 412 NOTIMPLEMENTED(); | 412 NOTIMPLEMENTED(); |
| 413 return NULL; | 413 return NULL; |
| 414 } | 414 } |
| 415 | 415 |
| 416 DOMMessageHandler::~DOMMessageHandler() { | |
| 417 NOTIMPLEMENTED(); | |
| 418 } | |
| 419 | |
| 420 views::Window* CreateInputWindow(gfx::NativeWindow parent_hwnd, | 416 views::Window* CreateInputWindow(gfx::NativeWindow parent_hwnd, |
| 421 InputWindowDelegate* delegate) { | 417 InputWindowDelegate* delegate) { |
| 422 NOTIMPLEMENTED(); | 418 NOTIMPLEMENTED(); |
| 423 return new views::Window(); | 419 return new views::Window(); |
| 424 } | 420 } |
| 421 |
| OLD | NEW |