OLD | NEW |
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/browser/automation/automation_provider.h" | 5 #include "chrome/browser/automation/automation_provider.h" |
6 | 6 |
7 #include "base/keyboard_codes.h" | 7 #include "base/keyboard_codes.h" |
8 #include "chrome/browser/automation/ui_controls.h" | 8 #include "chrome/browser/automation/ui_controls.h" |
9 #include "chrome/browser/browser_window.h" | 9 #include "chrome/browser/browser_window.h" |
10 #include "chrome/browser/external_tab_container.h" | 10 #include "chrome/browser/external_tab_container.h" |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 | 509 |
510 void AutomationProvider::OnBrowserMoved(int tab_handle) { | 510 void AutomationProvider::OnBrowserMoved(int tab_handle) { |
511 ExternalTabContainer* external_tab = GetExternalTabForHandle(tab_handle); | 511 ExternalTabContainer* external_tab = GetExternalTabForHandle(tab_handle); |
512 if (external_tab) { | 512 if (external_tab) { |
513 external_tab->WindowMoved(); | 513 external_tab->WindowMoved(); |
514 } else { | 514 } else { |
515 DLOG(WARNING) << | 515 DLOG(WARNING) << |
516 "AutomationProvider::OnBrowserMoved called with invalid tab handle."; | 516 "AutomationProvider::OnBrowserMoved called with invalid tab handle."; |
517 } | 517 } |
518 } | 518 } |
| 519 |
| 520 void AutomationProvider::GetWindowTitle(int handle, string16* text) { |
| 521 gfx::NativeWindow window = window_tracker_->GetResource(handle); |
| 522 std::wstring result; |
| 523 int length = ::GetWindowTextLength(window) + 1; |
| 524 ::GetWindowText(window, WriteInto(&result, length), length); |
| 525 text->assign(WideToUTF16(result)); |
| 526 } |
OLD | NEW |