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 21 matching lines...) Expand all Loading... |
32 #include "chrome/browser/bookmarks/bookmark_manager.h" | 32 #include "chrome/browser/bookmarks/bookmark_manager.h" |
33 #include "chrome/browser/tab_contents/constrained_window.h" | 33 #include "chrome/browser/tab_contents/constrained_window.h" |
34 #include "views/controls/menu/chrome_menu.h" | 34 #include "views/controls/menu/chrome_menu.h" |
35 #include "views/controls/single_split_view.h" | 35 #include "views/controls/single_split_view.h" |
36 #endif | 36 #endif |
37 | 37 |
38 class TabContents; | 38 class TabContents; |
39 | 39 |
40 //-------------------------------------------------------------------------- | 40 //-------------------------------------------------------------------------- |
41 | 41 |
| 42 #if defined(OS_MACOSX) |
42 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); } | 43 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); } |
| 44 #endif |
43 | 45 |
44 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } | 46 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } |
45 | 47 |
46 void AutomationProvider::SetWindowVisible(int handle, bool visible, | 48 void AutomationProvider::SetWindowVisible(int handle, bool visible, |
47 bool* result) { NOTIMPLEMENTED(); } | 49 bool* result) { NOTIMPLEMENTED(); } |
48 | 50 |
49 void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds, | 51 void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds, |
50 bool* success) { | 52 bool* success) { |
51 NOTIMPLEMENTED(); | 53 NOTIMPLEMENTED(); |
52 } | 54 } |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 Handler* handler) { | 415 Handler* handler) { |
414 NOTIMPLEMENTED(); | 416 NOTIMPLEMENTED(); |
415 } | 417 } |
416 | 418 |
417 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 419 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
418 } | 420 } |
419 void BookmarkManager::Show(Profile* profile) { | 421 void BookmarkManager::Show(Profile* profile) { |
420 } | 422 } |
421 | 423 |
422 #endif | 424 #endif |
OLD | NEW |