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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 } | 267 } |
268 #endif | 268 #endif |
269 | 269 |
270 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( | 270 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( |
271 TabContents* tab, | 271 TabContents* tab, |
272 DownloadRequestManager::TabDownloadState* host) { | 272 DownloadRequestManager::TabDownloadState* host) { |
273 NOTIMPLEMENTED(); | 273 NOTIMPLEMENTED(); |
274 return NULL; | 274 return NULL; |
275 } | 275 } |
276 | 276 |
| 277 #if !defined(TOOLKIT_VIEWS) |
277 namespace download_util { | 278 namespace download_util { |
278 | 279 |
279 void DragDownload(const DownloadItem* download, SkBitmap* icon) { | 280 void DragDownload(const DownloadItem* download, SkBitmap* icon) { |
280 NOTIMPLEMENTED(); | 281 NOTIMPLEMENTED(); |
281 } | 282 } |
282 | 283 |
283 } // namespace download_util | 284 } // namespace download_util |
| 285 #endif |
284 | 286 |
285 #if defined(OS_MACOSX) | 287 #if defined(OS_MACOSX) |
286 void HungRendererDialog::HideForTabContents(TabContents*) { | 288 void HungRendererDialog::HideForTabContents(TabContents*) { |
287 NOTIMPLEMENTED(); | 289 NOTIMPLEMENTED(); |
288 } | 290 } |
289 | 291 |
290 void HungRendererDialog::ShowForTabContents(TabContents*) { | 292 void HungRendererDialog::ShowForTabContents(TabContents*) { |
291 NOTIMPLEMENTED(); | 293 NOTIMPLEMENTED(); |
292 } | 294 } |
293 #endif | 295 #endif |
(...skipping 13 matching lines...) Expand all Loading... |
307 } | 309 } |
308 #endif | 310 #endif |
309 | 311 |
310 #if !defined(TOOLKIT_VIEWS) | 312 #if !defined(TOOLKIT_VIEWS) |
311 bool DockInfo::GetNewWindowBounds(gfx::Rect* new_window_bounds, | 313 bool DockInfo::GetNewWindowBounds(gfx::Rect* new_window_bounds, |
312 bool* maximize_new_window) const { | 314 bool* maximize_new_window) const { |
313 NOTIMPLEMENTED(); | 315 NOTIMPLEMENTED(); |
314 return true; | 316 return true; |
315 } | 317 } |
316 #endif | 318 #endif |
OLD | NEW |