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 10 matching lines...) Expand all Loading... |
21 #include "chrome/browser/rlz/rlz.h" | 21 #include "chrome/browser/rlz/rlz.h" |
22 #include "chrome/browser/shell_integration.h" | 22 #include "chrome/browser/shell_integration.h" |
23 #include "chrome/browser/tab_contents/infobar_delegate.h" | 23 #include "chrome/browser/tab_contents/infobar_delegate.h" |
24 #include "chrome/common/process_watcher.h" | 24 #include "chrome/common/process_watcher.h" |
25 | 25 |
26 #if defined(OS_LINUX) | 26 #if defined(OS_LINUX) |
27 #include "chrome/browser/dock_info.h" | 27 #include "chrome/browser/dock_info.h" |
28 #endif | 28 #endif |
29 | 29 |
30 #if defined(TOOLKIT_VIEWS) | 30 #if defined(TOOLKIT_VIEWS) |
| 31 #include "chrome/browser/bookmarks/bookmark_editor.h" |
| 32 #include "chrome/browser/bookmarks/bookmark_manager.h" |
| 33 #include "chrome/browser/tab_contents/constrained_window.h" |
31 #include "views/controls/menu/chrome_menu.h" | 34 #include "views/controls/menu/chrome_menu.h" |
| 35 #include "views/controls/single_split_view.h" |
32 #endif | 36 #endif |
33 | 37 |
34 class InfoBar; | 38 class InfoBar; |
35 class TabContents; | 39 class TabContents; |
36 | 40 |
37 //-------------------------------------------------------------------------- | 41 //-------------------------------------------------------------------------- |
38 | 42 |
39 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); } | 43 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); } |
40 | 44 |
41 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } | 45 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 NOTIMPLEMENTED(); | 409 NOTIMPLEMENTED(); |
406 return NULL; | 410 return NULL; |
407 } | 411 } |
408 | 412 |
409 wchar_t MenuItemView::GetMnemonic() { | 413 wchar_t MenuItemView::GetMnemonic() { |
410 return 'a'; | 414 return 'a'; |
411 } | 415 } |
412 | 416 |
413 } // namespace views | 417 } // namespace views |
414 | 418 |
| 419 ConstrainedWindow* ConstrainedWindow::CreateConstrainedDialog( |
| 420 TabContents* owner, |
| 421 ConstrainedWindowDelegate* delegate) { |
| 422 NOTIMPLEMENTED(); |
| 423 return NULL; |
| 424 } |
| 425 |
| 426 void BookmarkEditor::Show(gfx::NativeView parent_window, |
| 427 Profile* profile, |
| 428 const BookmarkNode* parent, |
| 429 const BookmarkNode* node, |
| 430 Configuration configuration, |
| 431 Handler* handler) { |
| 432 NOTIMPLEMENTED(); |
| 433 } |
| 434 |
| 435 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 436 } |
| 437 void BookmarkManager::Show(Profile* profile) { |
| 438 } |
| 439 |
415 #endif | 440 #endif |
OLD | NEW |