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

Unified Diff: chrome/browser/automation/testing_automation_provider_aura.cc

Issue 8894018: Move the concept of Activation to the Shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/platform_util_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/testing_automation_provider_aura.cc
===================================================================
--- chrome/browser/automation/testing_automation_provider_aura.cc (revision 114022)
+++ chrome/browser/automation/testing_automation_provider_aura.cc (working copy)
@@ -8,12 +8,13 @@
#include "chrome/browser/automation/automation_window_tracker.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
+#include "ui/aura_shell/window_util.h"
#include "ui/base/ui_base_types.h"
void TestingAutomationProvider::ActivateWindow(int handle) {
aura::Window* window = window_tracker_->GetResource(handle);
if (window) {
- window->Activate();
+ aura_shell::ActivateWindow(window);
}
}
« no previous file with comments | « no previous file | chrome/browser/platform_util_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698