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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1870943002: Revert "Ship the Credential Management API by default" from M50. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2661
Patch Set: Created 4 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after
1430 switches::kDisableSpeechAPI, 1430 switches::kDisableSpeechAPI,
1431 switches::kDisableThreadedCompositing, 1431 switches::kDisableThreadedCompositing,
1432 switches::kDisableThreadedScrolling, 1432 switches::kDisableThreadedScrolling,
1433 switches::kDisableTouchAdjustment, 1433 switches::kDisableTouchAdjustment,
1434 switches::kDisableTouchDragDrop, 1434 switches::kDisableTouchDragDrop,
1435 switches::kDisableV8IdleTasks, 1435 switches::kDisableV8IdleTasks,
1436 switches::kDisableWheelGestures, 1436 switches::kDisableWheelGestures,
1437 switches::kDomAutomationController, 1437 switches::kDomAutomationController,
1438 switches::kEnableBlinkFeatures, 1438 switches::kEnableBlinkFeatures,
1439 switches::kEnableBrowserSideNavigation, 1439 switches::kEnableBrowserSideNavigation,
1440 switches::kEnableCredentialManagerAPI,
1440 switches::kEnableDisplayList2dCanvas, 1441 switches::kEnableDisplayList2dCanvas,
1441 switches::kEnableDistanceFieldText, 1442 switches::kEnableDistanceFieldText,
1442 switches::kEnableExperimentalCanvasFeatures, 1443 switches::kEnableExperimentalCanvasFeatures,
1443 switches::kEnableExperimentalWebPlatformFeatures, 1444 switches::kEnableExperimentalWebPlatformFeatures,
1444 switches::kEnableHeapProfiling, 1445 switches::kEnableHeapProfiling,
1445 switches::kEnableGPUClientLogging, 1446 switches::kEnableGPUClientLogging,
1446 switches::kEnableGpuClientTracing, 1447 switches::kEnableGpuClientTracing,
1447 switches::kEnableGpuMemoryBufferVideoFrames, 1448 switches::kEnableGpuMemoryBufferVideoFrames,
1448 switches::kEnableGPUServiceLogging, 1449 switches::kEnableGPUServiceLogging,
1449 switches::kEnableIconNtp, 1450 switches::kEnableIconNtp,
(...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after
2816 2817
2817 // Skip widgets in other processes. 2818 // Skip widgets in other processes.
2818 if (rvh->GetProcess()->GetID() != GetID()) 2819 if (rvh->GetProcess()->GetID() != GetID())
2819 continue; 2820 continue;
2820 2821
2821 rvh->OnWebkitPreferencesChanged(); 2822 rvh->OnWebkitPreferencesChanged();
2822 } 2823 }
2823 } 2824 }
2824 2825
2825 } // namespace content 2826 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/password_manager_handler.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698