| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 Event event) { | 221 Event event) { |
| 222 // http://code.google.com/p/chromium/issues/detail?id=8152 | 222 // http://code.google.com/p/chromium/issues/detail?id=8152 |
| 223 return false; | 223 return false; |
| 224 } | 224 } |
| 225 | 225 |
| 226 //-------------------------------------------------------------------------- | 226 //-------------------------------------------------------------------------- |
| 227 | 227 |
| 228 void RunRepostFormWarningDialog(NavigationController*) { | 228 void RunRepostFormWarningDialog(NavigationController*) { |
| 229 } | 229 } |
| 230 | 230 |
| 231 #if defined(OS_MACOSX) | |
| 232 LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info, | |
| 233 URLRequest* request, | |
| 234 MessageLoop* ui_loop) { | |
| 235 NOTIMPLEMENTED(); | |
| 236 return NULL; | |
| 237 } | |
| 238 #endif | |
| 239 | |
| 240 //-------------------------------------------------------------------------- | 231 //-------------------------------------------------------------------------- |
| 241 | 232 |
| 242 MemoryDetails::MemoryDetails() { | 233 MemoryDetails::MemoryDetails() { |
| 243 NOTIMPLEMENTED(); | 234 NOTIMPLEMENTED(); |
| 244 } | 235 } |
| 245 | 236 |
| 246 void MemoryDetails::StartFetch() { | 237 void MemoryDetails::StartFetch() { |
| 247 NOTIMPLEMENTED(); | 238 NOTIMPLEMENTED(); |
| 248 } | 239 } |
| 249 | 240 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 Handler* handler) { | 407 Handler* handler) { |
| 417 NOTIMPLEMENTED(); | 408 NOTIMPLEMENTED(); |
| 418 } | 409 } |
| 419 | 410 |
| 420 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 411 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 421 } | 412 } |
| 422 void BookmarkManager::Show(Profile* profile) { | 413 void BookmarkManager::Show(Profile* profile) { |
| 423 } | 414 } |
| 424 | 415 |
| 425 #endif | 416 #endif |
| OLD | NEW |