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

Unified Diff: extensions/shell/browser/shell_app_window_client.cc

Issue 631333003: Adding application lifetime tests to athena, allowing to override focus request for applciations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/shell/browser/shell_app_window_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/shell/browser/shell_app_window_client.cc
diff --git a/extensions/shell/browser/shell_app_window_client.cc b/extensions/shell/browser/shell_app_window_client.cc
index afa5f91107cb1ca6bb06b05ec3e192fd845298df..293f58b91c7dc427f5c2bc6f0638ef2a2daafaad 100644
--- a/extensions/shell/browser/shell_app_window_client.cc
+++ b/extensions/shell/browser/shell_app_window_client.cc
@@ -26,9 +26,9 @@ AppWindow* ShellAppWindowClient::CreateAppWindow(
NativeAppWindow* ShellAppWindowClient::CreateNativeAppWindow(
AppWindow* window,
- const AppWindow::CreateParams& params) {
+ AppWindow::CreateParams* params) {
ShellNativeAppWindow* native_app_window =
- new ShellNativeAppWindow(window, params);
+ new ShellNativeAppWindow(window, *params);
DesktopController::instance()->AddAppWindow(
native_app_window->GetNativeWindow());
return native_app_window;
« no previous file with comments | « extensions/shell/browser/shell_app_window_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698