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

Side by Side Diff: chrome/test/automation/tab_proxy.h

Issue 62042: Added an automation IPC to set the parent of a window. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/automation/automation_messages.h ('k') | chrome/test/automation/tab_proxy.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_TEST_AUTOMATION_TAB_PROXY_H_ 5 #ifndef CHROME_TEST_AUTOMATION_TAB_PROXY_H_
6 #define CHROME_TEST_AUTOMATION_TAB_PROXY_H_ 6 #define CHROME_TEST_AUTOMATION_TAB_PROXY_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 // Gets the current used encoding of the page in the tab. 282 // Gets the current used encoding of the page in the tab.
283 bool GetPageCurrentEncoding(std::wstring* encoding); 283 bool GetPageCurrentEncoding(std::wstring* encoding);
284 284
285 // Uses the specified encoding to override encoding of the page in the tab. 285 // Uses the specified encoding to override encoding of the page in the tab.
286 bool OverrideEncoding(const std::wstring& encoding); 286 bool OverrideEncoding(const std::wstring& encoding);
287 287
288 #if defined(OS_WIN) 288 #if defined(OS_WIN)
289 // Resizes the tab window. 289 // Resizes the tab window.
290 void Reposition(HWND window, HWND window_insert_after, int left, int top, 290 void Reposition(HWND window, HWND window_insert_after, int left, int top,
291 int width, int height, int flags); 291 int width, int height, int flags);
292 void SetParentWindow(HWND window, HWND parent_window, long flags);
292 #endif // defined(OS_WIN) 293 #endif // defined(OS_WIN)
293 294
294 private: 295 private:
295 DISALLOW_COPY_AND_ASSIGN(TabProxy); 296 DISALLOW_COPY_AND_ASSIGN(TabProxy);
296 }; 297 };
297 298
298 #endif // CHROME_TEST_AUTOMATION_TAB_PROXY_H_ 299 #endif // CHROME_TEST_AUTOMATION_TAB_PROXY_H_
OLDNEW
« no previous file with comments | « chrome/test/automation/automation_messages.h ('k') | chrome/test/automation/tab_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698