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

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

Issue 62117: linux: pass a bunch more ui tests. (Closed)
Patch Set: more tests Created 11 years, 8 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
« no previous file with comments | « chrome/common/pref_service_uitest.cc ('k') | chrome/test/ui/ui_test.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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 29 matching lines...) Expand all
40 #include "chrome/common/gfx/text_elider.h" 40 #include "chrome/common/gfx/text_elider.h"
41 #include "chrome/common/notification_service.h" 41 #include "chrome/common/notification_service.h"
42 #include "chrome/common/pref_service.h" 42 #include "chrome/common/pref_service.h"
43 #include "chrome/common/process_watcher.h" 43 #include "chrome/common/process_watcher.h"
44 #include "net/url_request/url_request_context.h" 44 #include "net/url_request/url_request_context.h"
45 #include "webkit/glue/webcursor.h" 45 #include "webkit/glue/webcursor.h"
46 #include "webkit/glue/webkit_glue.h" 46 #include "webkit/glue/webkit_glue.h"
47 47
48 //-------------------------------------------------------------------------- 48 //--------------------------------------------------------------------------
49 49
50 WebContents* AutomationProvider::GetWebContentsForHandle(
51 int handle, NavigationController** tab) {
52 NOTIMPLEMENTED();
53 return NULL;
54 }
55
56 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); } 50 void AutomationProvider::GetActiveWindow(int* handle) { NOTIMPLEMENTED(); }
57 51
58 void AutomationProvider::IsWindowActive(int handle, bool* success, 52 void AutomationProvider::IsWindowActive(int handle, bool* success,
59 bool* is_active) { 53 bool* is_active) {
60 *success = false; 54 *success = false;
61 NOTIMPLEMENTED(); 55 NOTIMPLEMENTED();
62 } 56 }
63 57
64 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } 58 void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); }
65 59
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 gfx::Rect* window_bounds, 371 gfx::Rect* window_bounds,
378 bool* maximized) { 372 bool* maximized) {
379 // If we're given a bounds, use it (for things like tearing off tabs during 373 // If we're given a bounds, use it (for things like tearing off tabs during
380 // drags). If not, make up something reasonable until the rest of the 374 // drags). If not, make up something reasonable until the rest of the
381 // WindowSizer infrastructure is in place. 375 // WindowSizer infrastructure is in place.
382 *window_bounds = specified_bounds; 376 *window_bounds = specified_bounds;
383 if (specified_bounds.IsEmpty()) { 377 if (specified_bounds.IsEmpty()) {
384 *window_bounds = gfx::Rect(0, 0, 1024, 768); 378 *window_bounds = gfx::Rect(0, 0, 1024, 768);
385 } 379 }
386 } 380 }
OLDNEW
« no previous file with comments | « chrome/common/pref_service_uitest.cc ('k') | chrome/test/ui/ui_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698