| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info, | 229 LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info, |
| 230 URLRequest* request, | 230 URLRequest* request, |
| 231 MessageLoop* ui_loop) { | 231 MessageLoop* ui_loop) { |
| 232 NOTIMPLEMENTED(); | 232 NOTIMPLEMENTED(); |
| 233 return NULL; | 233 return NULL; |
| 234 } | 234 } |
| 235 #endif | 235 #endif |
| 236 | 236 |
| 237 //-------------------------------------------------------------------------- | 237 //-------------------------------------------------------------------------- |
| 238 | 238 |
| 239 #if defined(OS_MACOSX) |
| 239 MemoryDetails::MemoryDetails() { | 240 MemoryDetails::MemoryDetails() { |
| 240 NOTIMPLEMENTED(); | 241 NOTIMPLEMENTED(); |
| 241 } | 242 } |
| 242 | 243 |
| 243 void MemoryDetails::StartFetch() { | 244 void MemoryDetails::StartFetch() { |
| 244 NOTIMPLEMENTED(); | 245 NOTIMPLEMENTED(); |
| 245 } | 246 } |
| 246 | 247 |
| 248 #endif |
| 249 |
| 247 #if defined(OS_MACOSX) || (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) | 250 #if defined(OS_MACOSX) || (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) |
| 248 // This should prompt the user if she wants to allow more than one concurrent | 251 // This should prompt the user if she wants to allow more than one concurrent |
| 249 // download per tab. Until this is in place, always allow multiple downloads. | 252 // download per tab. Until this is in place, always allow multiple downloads. |
| 250 class DownloadRequestDialogDelegateStub | 253 class DownloadRequestDialogDelegateStub |
| 251 : public DownloadRequestDialogDelegate { | 254 : public DownloadRequestDialogDelegate { |
| 252 public: | 255 public: |
| 253 explicit DownloadRequestDialogDelegateStub( | 256 explicit DownloadRequestDialogDelegateStub( |
| 254 DownloadRequestManager::TabDownloadState* host) | 257 DownloadRequestManager::TabDownloadState* host) |
| 255 : DownloadRequestDialogDelegate(host) { DoAccept(); } | 258 : DownloadRequestDialogDelegate(host) { DoAccept(); } |
| 256 | 259 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 Handler* handler) { | 416 Handler* handler) { |
| 414 NOTIMPLEMENTED(); | 417 NOTIMPLEMENTED(); |
| 415 } | 418 } |
| 416 | 419 |
| 417 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 420 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 418 } | 421 } |
| 419 void BookmarkManager::Show(Profile* profile) { | 422 void BookmarkManager::Show(Profile* profile) { |
| 420 } | 423 } |
| 421 | 424 |
| 422 #endif | 425 #endif |
| OLD | NEW |