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

Side by Side Diff: chrome/browser/chromeos/login/login_utils.cc

Issue 6594063: Update a bunch of files to the new location of browser_thread.h (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/chromeos/login/login_utils.h" 5 #include "chrome/browser/chromeos/login/login_utils.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
11 #include "base/file_util.h" 11 #include "base/file_util.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/scoped_ptr.h" 13 #include "base/scoped_ptr.h"
14 #include "base/singleton.h" 14 #include "base/singleton.h"
15 #include "base/string_util.h" 15 #include "base/string_util.h"
16 #include "base/stringprintf.h" 16 #include "base/stringprintf.h"
17 #include "base/synchronization/lock.h" 17 #include "base/synchronization/lock.h"
18 #include "base/threading/thread_restrictions.h" 18 #include "base/threading/thread_restrictions.h"
19 #include "base/time.h" 19 #include "base/time.h"
20 #include "base/utf_string_conversions.h" 20 #include "base/utf_string_conversions.h"
21 #include "chrome/browser/browser_process.h" 21 #include "chrome/browser/browser_process.h"
22 #include "chrome/browser/browser_thread.h"
23 #include "chrome/browser/chromeos/boot_times_loader.h" 22 #include "chrome/browser/chromeos/boot_times_loader.h"
24 #include "chrome/browser/chromeos/cros/login_library.h" 23 #include "chrome/browser/chromeos/cros/login_library.h"
25 #include "chrome/browser/chromeos/cros/network_library.h" 24 #include "chrome/browser/chromeos/cros/network_library.h"
26 #include "chrome/browser/chromeos/input_method/input_method_util.h" 25 #include "chrome/browser/chromeos/input_method/input_method_util.h"
27 #include "chrome/browser/chromeos/login/background_view.h" 26 #include "chrome/browser/chromeos/login/background_view.h"
28 #include "chrome/browser/chromeos/login/cookie_fetcher.h" 27 #include "chrome/browser/chromeos/login/cookie_fetcher.h"
29 #include "chrome/browser/chromeos/login/google_authenticator.h" 28 #include "chrome/browser/chromeos/login/google_authenticator.h"
30 #include "chrome/browser/chromeos/login/language_switch_menu.h" 29 #include "chrome/browser/chromeos/login/language_switch_menu.h"
31 #include "chrome/browser/chromeos/login/ownership_service.h" 30 #include "chrome/browser/chromeos/login/ownership_service.h"
32 #include "chrome/browser/chromeos/login/parallel_authenticator.h" 31 #include "chrome/browser/chromeos/login/parallel_authenticator.h"
(...skipping 12 matching lines...) Expand all
45 #include "chrome/browser/sync/profile_sync_service.h" 44 #include "chrome/browser/sync/profile_sync_service.h"
46 #include "chrome/browser/ui/browser_init.h" 45 #include "chrome/browser/ui/browser_init.h"
47 #include "chrome/common/chrome_paths.h" 46 #include "chrome/common/chrome_paths.h"
48 #include "chrome/common/chrome_switches.h" 47 #include "chrome/common/chrome_switches.h"
49 #include "chrome/common/logging_chrome.h" 48 #include "chrome/common/logging_chrome.h"
50 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" 49 #include "chrome/common/net/gaia/gaia_auth_fetcher.h"
51 #include "chrome/common/net/gaia/gaia_constants.h" 50 #include "chrome/common/net/gaia/gaia_constants.h"
52 #include "chrome/common/net/url_request_context_getter.h" 51 #include "chrome/common/net/url_request_context_getter.h"
53 #include "chrome/common/pref_names.h" 52 #include "chrome/common/pref_names.h"
54 #include "chrome/common/url_constants.h" 53 #include "chrome/common/url_constants.h"
54 #include "content/browser/browser_thread.h"
55 #include "googleurl/src/gurl.h" 55 #include "googleurl/src/gurl.h"
56 #include "net/base/cookie_store.h" 56 #include "net/base/cookie_store.h"
57 #include "net/proxy/proxy_config_service.h" 57 #include "net/proxy/proxy_config_service.h"
58 #include "net/url_request/url_request_context.h" 58 #include "net/url_request/url_request_context.h"
59 #include "views/widget/widget_gtk.h" 59 #include "views/widget/widget_gtk.h"
60 60
61 namespace chromeos { 61 namespace chromeos {
62 62
63 namespace { 63 namespace {
64 64
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 BrowserInit browser_init; 579 BrowserInit browser_init;
580 int return_code; 580 int return_code;
581 browser_init.LaunchBrowser(*CommandLine::ForCurrentProcess(), 581 browser_init.LaunchBrowser(*CommandLine::ForCurrentProcess(),
582 profile, 582 profile,
583 FilePath(), 583 FilePath(),
584 true, 584 true,
585 &return_code); 585 &return_code);
586 } 586 }
587 587
588 } // namespace chromeos 588 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/login_performer.cc ('k') | chrome/browser/chromeos/login/online_attempt.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698