| 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 } | 229 } |
| 230 | 230 |
| 231 //-------------------------------------------------------------------------- | 231 //-------------------------------------------------------------------------- |
| 232 | 232 |
| 233 MemoryDetails::MemoryDetails() { | 233 MemoryDetails::MemoryDetails() { |
| 234 NOTIMPLEMENTED(); | 234 NOTIMPLEMENTED(); |
| 235 } | 235 } |
| 236 | 236 |
| 237 void MemoryDetails::StartFetch() { | 237 void MemoryDetails::StartFetch() { |
| 238 NOTIMPLEMENTED(); | 238 NOTIMPLEMENTED(); |
| 239 OnDetailsAvailable(); |
| 239 } | 240 } |
| 240 | 241 |
| 241 #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) | 242 #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) |
| 242 // This should prompt the user if she wants to allow more than one concurrent | 243 // This should prompt the user if she wants to allow more than one concurrent |
| 243 // download per tab. Until this is in place, always allow multiple downloads. | 244 // download per tab. Until this is in place, always allow multiple downloads. |
| 244 class DownloadRequestDialogDelegateStub | 245 class DownloadRequestDialogDelegateStub |
| 245 : public DownloadRequestDialogDelegate { | 246 : public DownloadRequestDialogDelegate { |
| 246 public: | 247 public: |
| 247 explicit DownloadRequestDialogDelegateStub( | 248 explicit DownloadRequestDialogDelegateStub( |
| 248 DownloadRequestManager::TabDownloadState* host) | 249 DownloadRequestManager::TabDownloadState* host) |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 Handler* handler) { | 408 Handler* handler) { |
| 408 NOTIMPLEMENTED(); | 409 NOTIMPLEMENTED(); |
| 409 } | 410 } |
| 410 | 411 |
| 411 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 412 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 412 } | 413 } |
| 413 void BookmarkManager::Show(Profile* profile) { | 414 void BookmarkManager::Show(Profile* profile) { |
| 414 } | 415 } |
| 415 | 416 |
| 416 #endif | 417 #endif |
| OLD | NEW |