| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 | 210 |
| 211 //-------------------------------------------------------------------------- | 211 //-------------------------------------------------------------------------- |
| 212 | 212 |
| 213 void RunRepostFormWarningDialog(NavigationController*) { | 213 void RunRepostFormWarningDialog(NavigationController*) { |
| 214 // http://code.google.com/p/chromium/issues/detail?id=19761 | 214 // http://code.google.com/p/chromium/issues/detail?id=19761 |
| 215 NOTIMPLEMENTED(); | 215 NOTIMPLEMENTED(); |
| 216 } | 216 } |
| 217 | 217 |
| 218 //-------------------------------------------------------------------------- | 218 //-------------------------------------------------------------------------- |
| 219 | 219 |
| 220 #if defined(OS_MACOSX) |
| 220 MemoryDetails::MemoryDetails() { | 221 MemoryDetails::MemoryDetails() { |
| 221 NOTIMPLEMENTED(); | 222 NOTIMPLEMENTED(); |
| 222 } | 223 } |
| 223 | 224 |
| 224 void MemoryDetails::StartFetch() { | 225 void MemoryDetails::StartFetch() { |
| 225 NOTIMPLEMENTED(); | 226 NOTIMPLEMENTED(); |
| 226 OnDetailsAvailable(); | 227 OnDetailsAvailable(); |
| 227 } | 228 } |
| 229 #endif |
| 228 | 230 |
| 229 #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) | 231 #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) |
| 230 // This should prompt the user if she wants to allow more than one concurrent | 232 // This should prompt the user if she wants to allow more than one concurrent |
| 231 // download per tab. Until this is in place, always allow multiple downloads. | 233 // download per tab. Until this is in place, always allow multiple downloads. |
| 232 class DownloadRequestDialogDelegateStub | 234 class DownloadRequestDialogDelegateStub |
| 233 : public DownloadRequestDialogDelegate { | 235 : public DownloadRequestDialogDelegate { |
| 234 public: | 236 public: |
| 235 explicit DownloadRequestDialogDelegateStub( | 237 explicit DownloadRequestDialogDelegateStub( |
| 236 DownloadRequestManager::TabDownloadState* host) | 238 DownloadRequestManager::TabDownloadState* host) |
| 237 : DownloadRequestDialogDelegate(host) { DoCancel(); } | 239 : DownloadRequestDialogDelegate(host) { DoCancel(); } |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 Handler* handler) { | 319 Handler* handler) { |
| 318 NOTIMPLEMENTED(); | 320 NOTIMPLEMENTED(); |
| 319 } | 321 } |
| 320 | 322 |
| 321 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 323 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 322 } | 324 } |
| 323 void BookmarkManager::Show(Profile* profile) { | 325 void BookmarkManager::Show(Profile* profile) { |
| 324 } | 326 } |
| 325 | 327 |
| 326 #endif | 328 #endif |
| OLD | NEW |