Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: chrome/common/temp_scaffolding_stubs.cc

Issue 149233: Adds a way to set the boundaries of the browser window through... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/test/automation/automation_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698