| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 //-------------------------------------------------------------------------- | 308 //-------------------------------------------------------------------------- |
| 309 | 309 |
| 310 #if defined(OS_MACOSX) | 310 #if defined(OS_MACOSX) |
| 311 void ShowOptionsWindow(OptionsPage page, | 311 void ShowOptionsWindow(OptionsPage page, |
| 312 OptionsGroup highlight_group, | 312 OptionsGroup highlight_group, |
| 313 Profile* profile) { | 313 Profile* profile) { |
| 314 NOTIMPLEMENTED(); | 314 NOTIMPLEMENTED(); |
| 315 } | 315 } |
| 316 #endif | 316 #endif |
| 317 | 317 |
| 318 #if !defined(TOOLKIT_VIEWS) | 318 #if defined(OS_MACOSX) |
| 319 bool DockInfo::GetNewWindowBounds(gfx::Rect* new_window_bounds, | 319 bool DockInfo::GetNewWindowBounds(gfx::Rect* new_window_bounds, |
| 320 bool* maximize_new_window) const { | 320 bool* maximize_new_window) const { |
| 321 NOTIMPLEMENTED(); | 321 NOTIMPLEMENTED(); |
| 322 return true; | 322 return true; |
| 323 } | 323 } |
| 324 #endif | 324 #endif |
| 325 | 325 |
| 326 //------------------------------------------------------------------------------ | 326 //------------------------------------------------------------------------------ |
| 327 | 327 |
| 328 #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) | 328 #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 return NULL; | 401 return NULL; |
| 402 } | 402 } |
| 403 | 403 |
| 404 wchar_t MenuItemView::GetMnemonic() { | 404 wchar_t MenuItemView::GetMnemonic() { |
| 405 return 'a'; | 405 return 'a'; |
| 406 } | 406 } |
| 407 | 407 |
| 408 } // namespace views | 408 } // namespace views |
| 409 | 409 |
| 410 #endif | 410 #endif |
| OLD | NEW |