| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 Event event) { | 217 Event event) { |
| 218 // http://code.google.com/p/chromium/issues/detail?id=8152 | 218 // http://code.google.com/p/chromium/issues/detail?id=8152 |
| 219 return false; | 219 return false; |
| 220 } | 220 } |
| 221 | 221 |
| 222 //-------------------------------------------------------------------------- | 222 //-------------------------------------------------------------------------- |
| 223 | 223 |
| 224 void RunRepostFormWarningDialog(NavigationController*) { | 224 void RunRepostFormWarningDialog(NavigationController*) { |
| 225 } | 225 } |
| 226 | 226 |
| 227 #if defined(OS_MACOSX) |
| 227 LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info, | 228 LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info, |
| 228 URLRequest* request, | 229 URLRequest* request, |
| 229 MessageLoop* ui_loop) { | 230 MessageLoop* ui_loop) { |
| 230 NOTIMPLEMENTED(); | 231 NOTIMPLEMENTED(); |
| 231 return NULL; | 232 return NULL; |
| 232 } | 233 } |
| 234 #endif |
| 233 | 235 |
| 234 //-------------------------------------------------------------------------- | 236 //-------------------------------------------------------------------------- |
| 235 | 237 |
| 236 MemoryDetails::MemoryDetails() { | 238 MemoryDetails::MemoryDetails() { |
| 237 NOTIMPLEMENTED(); | 239 NOTIMPLEMENTED(); |
| 238 } | 240 } |
| 239 | 241 |
| 240 void MemoryDetails::StartFetch() { | 242 void MemoryDetails::StartFetch() { |
| 241 NOTIMPLEMENTED(); | 243 NOTIMPLEMENTED(); |
| 242 } | 244 } |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 return NULL; | 413 return NULL; |
| 412 } | 414 } |
| 413 | 415 |
| 414 wchar_t MenuItemView::GetMnemonic() { | 416 wchar_t MenuItemView::GetMnemonic() { |
| 415 return 'a'; | 417 return 'a'; |
| 416 } | 418 } |
| 417 | 419 |
| 418 } // namespace views | 420 } // namespace views |
| 419 | 421 |
| 420 #endif | 422 #endif |
| OLD | NEW |