| 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 "chrome/common/temp_scaffolding_stubs.h" | 5 #include "chrome/common/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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 }; | 252 }; |
| 253 | 253 |
| 254 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( | 254 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( |
| 255 TabContents* tab, | 255 TabContents* tab, |
| 256 DownloadRequestManager::TabDownloadState* host) { | 256 DownloadRequestManager::TabDownloadState* host) { |
| 257 NOTIMPLEMENTED(); | 257 NOTIMPLEMENTED(); |
| 258 return new DownloadRequestDialogDelegateStub(host); | 258 return new DownloadRequestDialogDelegateStub(host); |
| 259 } | 259 } |
| 260 #endif | 260 #endif |
| 261 | 261 |
| 262 #if !defined(TOOLKIT_VIEWS) | 262 #if !defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX) |
| 263 namespace download_util { | 263 namespace download_util { |
| 264 | 264 |
| 265 void DragDownload(const DownloadItem* download, SkBitmap* icon) { | 265 void DragDownload(const DownloadItem* download, |
| 266 SkBitmap* icon, |
| 267 gfx::NativeView view) { |
| 266 NOTIMPLEMENTED(); | 268 NOTIMPLEMENTED(); |
| 267 } | 269 } |
| 268 | 270 |
| 269 } // namespace download_util | 271 } // namespace download_util |
| 270 #endif | 272 #endif |
| 271 | 273 |
| 272 #if !defined(TOOLKIT_VIEWS) | 274 #if !defined(TOOLKIT_VIEWS) |
| 273 void BrowserList::AllBrowsersClosed() { | 275 void BrowserList::AllBrowsersClosed() { |
| 274 // TODO(port): Close any dependent windows if necessary when the last browser | 276 // TODO(port): Close any dependent windows if necessary when the last browser |
| 275 // window is closed. | 277 // window is closed. |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 Handler* handler) { | 409 Handler* handler) { |
| 408 NOTIMPLEMENTED(); | 410 NOTIMPLEMENTED(); |
| 409 } | 411 } |
| 410 | 412 |
| 411 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 413 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 412 } | 414 } |
| 413 void BookmarkManager::Show(Profile* profile) { | 415 void BookmarkManager::Show(Profile* profile) { |
| 414 } | 416 } |
| 415 | 417 |
| 416 #endif | 418 #endif |
| OLD | NEW |