| OLD | NEW |
| 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/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "chrome/browser/ui/browser_init.h" | 48 #include "chrome/browser/ui/browser_init.h" |
| 49 #include "chrome/common/chrome_paths.h" | 49 #include "chrome/common/chrome_paths.h" |
| 50 #include "chrome/common/chrome_switches.h" | 50 #include "chrome/common/chrome_switches.h" |
| 51 #include "chrome/common/logging_chrome.h" | 51 #include "chrome/common/logging_chrome.h" |
| 52 #include "chrome/common/net/gaia/gaia_constants.h" | 52 #include "chrome/common/net/gaia/gaia_constants.h" |
| 53 #include "chrome/common/net/gaia/gaia_urls.h" | 53 #include "chrome/common/net/gaia/gaia_urls.h" |
| 54 #include "chrome/common/pref_names.h" | 54 #include "chrome/common/pref_names.h" |
| 55 #include "chrome/common/url_constants.h" | 55 #include "chrome/common/url_constants.h" |
| 56 #include "content/browser/browser_thread.h" | 56 #include "content/browser/browser_thread.h" |
| 57 #include "googleurl/src/gurl.h" | 57 #include "googleurl/src/gurl.h" |
| 58 #include "net/base/cookie_monster.h" |
| 58 #include "net/base/cookie_store.h" | 59 #include "net/base/cookie_store.h" |
| 59 #include "net/base/cookie_monster.h" | |
| 60 #include "net/proxy/proxy_config_service.h" | 60 #include "net/proxy/proxy_config_service.h" |
| 61 #include "net/proxy/proxy_service.h" | 61 #include "net/proxy/proxy_service.h" |
| 62 #include "net/url_request/url_request_context.h" | 62 #include "net/url_request/url_request_context.h" |
| 63 #include "net/url_request/url_request_context_getter.h" | 63 #include "net/url_request/url_request_context_getter.h" |
| 64 #include "ui/gfx/gl/gl_switches.h" | 64 #include "ui/gfx/gl/gl_switches.h" |
| 65 | 65 |
| 66 namespace chromeos { | 66 namespace chromeos { |
| 67 | 67 |
| 68 namespace { | 68 namespace { |
| 69 | 69 |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 // Mark login host for deletion after browser starts. This | 702 // Mark login host for deletion after browser starts. This |
| 703 // guarantees that the message loop will be referenced by the | 703 // guarantees that the message loop will be referenced by the |
| 704 // browser before it is dereferenced by the login host. | 704 // browser before it is dereferenced by the login host. |
| 705 if (login_host) { | 705 if (login_host) { |
| 706 login_host->OnSessionStart(); | 706 login_host->OnSessionStart(); |
| 707 login_host = NULL; | 707 login_host = NULL; |
| 708 } | 708 } |
| 709 } | 709 } |
| 710 | 710 |
| 711 } // namespace chromeos | 711 } // namespace chromeos |
| OLD | NEW |