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

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 148913005: Create fileapi/ subdirectory under c/b/cros/drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/async_file_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/async_file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698