| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/ui/startup/startup_browser_creator.h" | 5 #include "chrome/browser/ui/startup/startup_browser_creator.h" |
| 6 | 6 |
| 7 #include <algorithm> // For max(). | 7 #include <algorithm> // For max(). |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1393 | 1393 |
| 1394 Profile* profile = ProfileManager::GetLastUsedProfile(); | 1394 Profile* profile = ProfileManager::GetLastUsedProfile(); |
| 1395 if (!profile) { | 1395 if (!profile) { |
| 1396 // We should only be able to get here if the profile already exists and | 1396 // We should only be able to get here if the profile already exists and |
| 1397 // has been created. | 1397 // has been created. |
| 1398 NOTREACHED(); | 1398 NOTREACHED(); |
| 1399 return; | 1399 return; |
| 1400 } | 1400 } |
| 1401 ProcessCmdLineImpl(cmd_line, cur_dir, false, profile, Profiles(), NULL, NULL); | 1401 ProcessCmdLineImpl(cmd_line, cur_dir, false, profile, Profiles(), NULL, NULL); |
| 1402 } | 1402 } |
| OLD | NEW |