OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |