| 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_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 #if defined(OS_WIN) | 154 #if defined(OS_WIN) |
| 155 #include "base/win/windows_version.h" | 155 #include "base/win/windows_version.h" |
| 156 #include "chrome/browser/chrome_browser_main_win.h" | 156 #include "chrome/browser/chrome_browser_main_win.h" |
| 157 #include "sandbox/win/src/sandbox_policy.h" | 157 #include "sandbox/win/src/sandbox_policy.h" |
| 158 #elif defined(OS_MACOSX) | 158 #elif defined(OS_MACOSX) |
| 159 #include "chrome/browser/chrome_browser_main_mac.h" | 159 #include "chrome/browser/chrome_browser_main_mac.h" |
| 160 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h" | 160 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h" |
| 161 #include "components/breakpad/app/breakpad_mac.h" | 161 #include "components/breakpad/app/breakpad_mac.h" |
| 162 #elif defined(OS_CHROMEOS) | 162 #elif defined(OS_CHROMEOS) |
| 163 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" | 163 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" |
| 164 #include "chrome/browser/chromeos/drive/file_system_backend_delegate.h" | 164 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" |
| 165 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" | 165 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" |
| 166 #include "chrome/browser/chromeos/login/startup_utils.h" | 166 #include "chrome/browser/chromeos/login/startup_utils.h" |
| 167 #include "chrome/browser/chromeos/login/user_manager.h" | 167 #include "chrome/browser/chromeos/login/user_manager.h" |
| 168 #include "chrome/browser/chromeos/system/input_device_settings.h" | 168 #include "chrome/browser/chromeos/system/input_device_settings.h" |
| 169 #include "chromeos/chromeos_switches.h" | 169 #include "chromeos/chromeos_switches.h" |
| 170 #elif defined(OS_LINUX) | 170 #elif defined(OS_LINUX) |
| 171 #include "chrome/browser/chrome_browser_main_linux.h" | 171 #include "chrome/browser/chrome_browser_main_linux.h" |
| 172 #elif defined(OS_ANDROID) | 172 #elif defined(OS_ANDROID) |
| 173 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" | 173 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" |
| 174 #include "chrome/browser/chrome_browser_main_android.h" | 174 #include "chrome/browser/chrome_browser_main_android.h" |
| (...skipping 2526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2701 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on | 2701 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on |
| 2702 // Chromium builds as well. | 2702 // Chromium builds as well. |
| 2703 return channel <= chrome::VersionInfo::CHANNEL_DEV; | 2703 return channel <= chrome::VersionInfo::CHANNEL_DEV; |
| 2704 #else | 2704 #else |
| 2705 return false; | 2705 return false; |
| 2706 #endif | 2706 #endif |
| 2707 } | 2707 } |
| 2708 | 2708 |
| 2709 | 2709 |
| 2710 } // namespace chrome | 2710 } // namespace chrome |
| OLD | NEW |