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

Unified Diff: chrome/browser/ui/apps/chrome_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 | « chrome/browser/ui/apps/chrome_app_window_client.h ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/apps/chrome_app_window_client.cc
diff --git a/chrome/browser/ui/apps/chrome_app_window_client.cc b/chrome/browser/ui/apps/chrome_app_window_client.cc
index 829d9704a636276310eb2d455cf85eede9ae8044..fc9eb507add7461f04b238e2c1edbb77b3c87c53 100644
--- a/chrome/browser/ui/apps/chrome_app_window_client.cc
+++ b/chrome/browser/ui/apps/chrome_app_window_client.cc
@@ -44,11 +44,11 @@ extensions::AppWindow* ChromeAppWindowClient::CreateAppWindow(
extensions::NativeAppWindow* ChromeAppWindowClient::CreateNativeAppWindow(
extensions::AppWindow* window,
- const extensions::AppWindow::CreateParams& params) {
+ extensions::AppWindow::CreateParams* params) {
#if defined(OS_ANDROID)
return NULL;
#else
- return CreateNativeAppWindowImpl(window, params);
+ return CreateNativeAppWindowImpl(window, *params);
#endif
}
« no previous file with comments | « chrome/browser/ui/apps/chrome_app_window_client.h ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698