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

Side by Side Diff: chrome/browser/automation/testing_automation_provider_aura.cc

Issue 7841012: Get chrome to link with USE_AURA (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
« no previous file with comments | « chrome/browser/automation/automation_provider_aura.cc ('k') | chrome/browser/browser_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/automation/testing_automation_provider.h"
6
7 #include "base/logging.h"
8
9 void TestingAutomationProvider::ActivateWindow(int handle) {
10 // TODO(beng):
11 NOTIMPLEMENTED();
12 }
13
14 void TestingAutomationProvider::IsWindowMaximized(int handle,
15 bool* is_maximized,
16 bool* success) {
17 // TODO(beng):
18 NOTIMPLEMENTED();
19 }
20
21 void TestingAutomationProvider::TerminateSession(int handle, bool* success) {
22 // TODO(beng):
23 NOTIMPLEMENTED();
24 }
25
26 void TestingAutomationProvider::GetWindowBounds(int handle,
27 gfx::Rect* bounds,
28 bool* success) {
29 // TODO(beng):
30 NOTIMPLEMENTED();
31 }
32
33 void TestingAutomationProvider::SetWindowBounds(int handle,
34 const gfx::Rect& bounds,
35 bool* success) {
36 // TODO(beng):
37 NOTIMPLEMENTED();
38 }
39
40 void TestingAutomationProvider::SetWindowVisible(int handle,
41 bool visible,
42 bool* result) {
43 // TODO(beng):
44 NOTIMPLEMENTED();
45 }
46
47 void TestingAutomationProvider::GetWindowTitle(int handle, string16* text) {
48 // TODO(beng):
49 NOTIMPLEMENTED();
50 }
51
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_provider_aura.cc ('k') | chrome/browser/browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698