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

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

Issue 661178: Continue removing bad dependency of chrome/common on chrome/browser... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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
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 "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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_provider_mac.mm ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698