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 29 matching lines...) Expand all Loading... |
40 | 40 |
41 //-------------------------------------------------------------------------- | 41 //-------------------------------------------------------------------------- |
42 | 42 |
43 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); } | 43 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); } |
44 | 44 |
45 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } | 45 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } |
46 | 46 |
47 void AutomationProvider::SetWindowVisible(int handle, bool visible, | 47 void AutomationProvider::SetWindowVisible(int handle, bool visible, |
48 bool* result) { NOTIMPLEMENTED(); } | 48 bool* result) { NOTIMPLEMENTED(); } |
49 | 49 |
| 50 void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds, |
| 51 bool* success) { |
| 52 NOTIMPLEMENTED(); |
| 53 } |
| 54 |
| 55 |
50 void AutomationProvider::GetFocusedViewID(int handle, int* view_id) { | 56 void AutomationProvider::GetFocusedViewID(int handle, int* view_id) { |
51 NOTIMPLEMENTED(); | 57 NOTIMPLEMENTED(); |
52 } | 58 } |
53 | 59 |
54 #if defined(OS_MACOSX) | 60 #if defined(OS_MACOSX) |
55 void AutomationProvider::GetAutocompleteEditForBrowser( | 61 void AutomationProvider::GetAutocompleteEditForBrowser( |
56 int browser_handle, | 62 int browser_handle, |
57 bool* success, | 63 bool* success, |
58 int* autocomplete_edit_handle) { | 64 int* autocomplete_edit_handle) { |
59 *success = false; | 65 *success = false; |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 Handler* handler) { | 437 Handler* handler) { |
432 NOTIMPLEMENTED(); | 438 NOTIMPLEMENTED(); |
433 } | 439 } |
434 | 440 |
435 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 441 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
436 } | 442 } |
437 void BookmarkManager::Show(Profile* profile) { | 443 void BookmarkManager::Show(Profile* profile) { |
438 } | 444 } |
439 | 445 |
440 #endif | 446 #endif |
OLD | NEW |