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

Side by Side Diff: chrome/browser/first_run_gtk.cc

Issue 1718024: Revert r46023: "Detect new instance of the browser when running in the background in persistent" (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 7 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
« no previous file with comments | « chrome/browser/first_run.h ('k') | chrome/browser/first_run_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/first_run.h" 5 #include "chrome/browser/first_run.h"
6 6
7 #include "app/app_switches.h" 7 #include "app/app_switches.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "chrome/browser/gtk/first_run_dialog.h" 12 #include "chrome/browser/gtk/first_run_dialog.h"
13 #include "chrome/browser/profile_manager.h" 13 #include "chrome/browser/profile_manager.h"
14 #include "chrome/browser/shell_integration.h" 14 #include "chrome/browser/shell_integration.h"
15 #include "chrome/common/chrome_switches.h" 15 #include "chrome/common/chrome_switches.h"
16 #include "chrome/common/pref_names.h" 16 #include "chrome/common/pref_names.h"
17 #include "chrome/common/result_codes.h" 17 #include "chrome/common/result_codes.h"
18 #include "chrome/installer/util/google_update_settings.h" 18 #include "chrome/installer/util/google_update_settings.h"
19 #include "chrome/installer/util/master_preferences.h" 19 #include "chrome/installer/util/master_preferences.h"
20 #include "chrome/installer/util/util_constants.h" 20 #include "chrome/installer/util/util_constants.h"
21 #include "googleurl/src/gurl.h" 21 #include "googleurl/src/gurl.h"
22 22
23 CommandLine* Upgrade::new_command_line_ = NULL;
24
25 bool OpenFirstRunDialog(Profile* profile, bool homepage_defined, 23 bool OpenFirstRunDialog(Profile* profile, bool homepage_defined,
26 int import_items, 24 int import_items,
27 int dont_import_items, 25 int dont_import_items,
28 bool search_engine_experiment, 26 bool search_engine_experiment,
29 ProcessSingleton* process_singleton) { 27 ProcessSingleton* process_singleton) {
30 return FirstRunDialog::Show(profile, process_singleton); 28 return FirstRunDialog::Show(profile, process_singleton);
31 } 29 }
32 30
33 FilePath GetDefaultPrefFilePath(bool create_profile_dir, 31 FilePath GetDefaultPrefFilePath(bool create_profile_dir,
34 const FilePath& user_data_dir) { 32 const FilePath& user_data_dir) {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 import_cmd.AppendSwitchWithValue( 132 import_cmd.AppendSwitchWithValue(
135 switches::kLang, 133 switches::kLang,
136 ASCIIToWide(g_browser_process->GetApplicationLocale())); 134 ASCIIToWide(g_browser_process->GetApplicationLocale()));
137 135
138 import_cmd.CommandLine::AppendSwitchWithValue( 136 import_cmd.CommandLine::AppendSwitchWithValue(
139 switches::kImportFromFile, import_bookmarks_path); 137 switches::kImportFromFile, import_bookmarks_path);
140 // Time to launch the process that is going to do the import. We'll wait 138 // Time to launch the process that is going to do the import. We'll wait
141 // for the process to return. 139 // for the process to return.
142 return base::LaunchApp(import_cmd, true, false, NULL); 140 return base::LaunchApp(import_cmd, true, false, NULL);
143 } 141 }
144
145 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
146 double Upgrade::saved_last_modified_time_of_exe_ = 0;
147
148 // static
149 bool Upgrade::IsUpdatePendingRestart() {
150 return saved_last_modified_time_of_exe_ !=
151 Upgrade::GetLastModifiedTimeOfExe();
152 }
153
154 // static
155 void Upgrade::SaveLastModifiedTimeOfExe() {
156 saved_last_modified_time_of_exe_ = Upgrade::GetLastModifiedTimeOfExe();
157 }
158
159 // static
160 void Upgrade::RelaunchChromeBrowserWithNewCommandLineIfNeeded() {
161 if (new_command_line_) {
162 if (!base::LaunchApp(*new_command_line_, false, false, NULL)) {
163 DLOG(ERROR) << "Launching a new instance of the browser failed.";
164 } else {
165 DLOG(WARNING) << "Launched a new instance of the browser.";
166 }
167 delete new_command_line_;
168 new_command_line_ = NULL;
169 }
170 }
171
172 // static
173 double Upgrade::GetLastModifiedTimeOfExe() {
174 FilePath exe_file_path;
175 if (!PathService::Get(base::FILE_EXE, &exe_file_path)) {
176 LOG(WARNING) << "Failed to get FilePath object for FILE_EXE.";
177 return saved_last_modified_time_of_exe_;
178 }
179 file_util::FileInfo exe_file_info;
180 if (!file_util::GetFileInfo(exe_file_path, &exe_file_info)) {
181 LOG(WARNING) << "Failed to get FileInfo object for FILE_EXE - "
182 << exe_file_path.value();
183 return saved_last_modified_time_of_exe_;
184 }
185 return exe_file_info.last_modified.ToDoubleT();
186 }
187 #endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
OLDNEW
« no previous file with comments | « chrome/browser/first_run.h ('k') | chrome/browser/first_run_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698