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/chrome_browser_main.h" | 5 #include "chrome/browser/chrome_browser_main.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 #include "content/public/browser/browser_thread.h" | 117 #include "content/public/browser/browser_thread.h" |
118 #include "content/public/browser/notification_observer.h" | 118 #include "content/public/browser/notification_observer.h" |
119 #include "content/public/browser/notification_registrar.h" | 119 #include "content/public/browser/notification_registrar.h" |
120 #include "content/public/browser/notification_service.h" | 120 #include "content/public/browser/notification_service.h" |
121 #include "content/public/browser/notification_types.h" | 121 #include "content/public/browser/notification_types.h" |
122 #include "content/public/browser/site_instance.h" | 122 #include "content/public/browser/site_instance.h" |
123 #include "content/public/common/content_client.h" | 123 #include "content/public/common/content_client.h" |
124 #include "content/public/common/content_switches.h" | 124 #include "content/public/common/content_switches.h" |
125 #include "content/public/common/main_function_params.h" | 125 #include "content/public/common/main_function_params.h" |
126 #include "extensions/browser/extension_protocols.h" | 126 #include "extensions/browser/extension_protocols.h" |
127 #include "grit/browser_resources.h" | 127 #include "grit/app_locale_settings.h" |
128 #include "grit/platform_locale_settings.h" | 128 #include "grit/platform_locale_settings.h" |
129 #include "net/base/net_module.h" | 129 #include "net/base/net_module.h" |
130 #include "net/base/sdch_manager.h" | 130 #include "net/base/sdch_manager.h" |
131 #include "net/cookies/cookie_monster.h" | 131 #include "net/cookies/cookie_monster.h" |
132 #include "net/http/http_network_layer.h" | 132 #include "net/http/http_network_layer.h" |
133 #include "net/http/http_stream_factory.h" | 133 #include "net/http/http_stream_factory.h" |
134 #include "net/url_request/url_request.h" | 134 #include "net/url_request/url_request.h" |
135 #include "ui/base/l10n/l10n_util.h" | 135 #include "ui/base/l10n/l10n_util.h" |
136 #include "ui/base/layout.h" | 136 #include "ui/base/layout.h" |
137 #include "ui/base/resource/resource_bundle.h" | 137 #include "ui/base/resource/resource_bundle.h" |
(...skipping 1542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1680 chromeos::CrosSettings::Shutdown(); | 1680 chromeos::CrosSettings::Shutdown(); |
1681 #endif | 1681 #endif |
1682 #endif | 1682 #endif |
1683 } | 1683 } |
1684 | 1684 |
1685 // Public members: | 1685 // Public members: |
1686 | 1686 |
1687 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { | 1687 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { |
1688 chrome_extra_parts_.push_back(parts); | 1688 chrome_extra_parts_.push_back(parts); |
1689 } | 1689 } |
OLD | NEW |