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

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

Issue 2823823002: Revert of [Payments] move //components/payments/content/*.mojom files to //components/payments/mojom (Closed)
Patch Set: Created 3 years, 8 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
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 <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 #include "components/crash/content/browser/crash_handler_host_linux.h" 276 #include "components/crash/content/browser/crash_handler_host_linux.h"
277 #endif 277 #endif
278 278
279 #if defined(OS_ANDROID) 279 #if defined(OS_ANDROID)
280 #include "chrome/browser/android/chrome_context_util.h" 280 #include "chrome/browser/android/chrome_context_util.h"
281 #include "chrome/browser/android/devtools_manager_delegate_android.h" 281 #include "chrome/browser/android/devtools_manager_delegate_android.h"
282 #include "chrome/browser/android/ntp/new_tab_page_url_handler.h" 282 #include "chrome/browser/android/ntp/new_tab_page_url_handler.h"
283 #include "chrome/browser/android/service_tab_launcher.h" 283 #include "chrome/browser/android/service_tab_launcher.h"
284 #include "chrome/browser/android/tab_android.h" 284 #include "chrome/browser/android/tab_android.h"
285 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" 285 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h"
286 #include "components/payments/mojom/payment_request.mojom.h" 286 #include "components/payments/content/payment_request.mojom.h"
287 #include "content/public/browser/android/java_interfaces.h" 287 #include "content/public/browser/android/java_interfaces.h"
288 #include "ui/base/ui_base_paths.h" 288 #include "ui/base/ui_base_paths.h"
289 #else 289 #else
290 #include "chrome/browser/devtools/chrome_devtools_manager_delegate.h" 290 #include "chrome/browser/devtools/chrome_devtools_manager_delegate.h"
291 #endif 291 #endif
292 292
293 #if defined(TOOLKIT_VIEWS) 293 #if defined(TOOLKIT_VIEWS)
294 #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h" 294 #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h"
295 #endif 295 #endif
296 296
(...skipping 3322 matching lines...) Expand 10 before | Expand all | Expand 10 after
3619 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 3619 RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
3620 return variations::GetVariationParamValue( 3620 return variations::GetVariationParamValue(
3621 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; 3621 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true";
3622 } 3622 }
3623 3623
3624 // static 3624 // static
3625 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( 3625 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting(
3626 const storage::QuotaSettings* settings) { 3626 const storage::QuotaSettings* settings) {
3627 g_default_quota_settings = settings; 3627 g_default_quota_settings = settings;
3628 } 3628 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698