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

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

Issue 1780043002: Add download button to MediaDocument on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moving css to a style element Created 4 years, 9 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 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after
1458 switches::kEnableGpuClientTracing, 1458 switches::kEnableGpuClientTracing,
1459 switches::kEnableGpuMemoryBufferVideoFrames, 1459 switches::kEnableGpuMemoryBufferVideoFrames,
1460 switches::kEnableGPUServiceLogging, 1460 switches::kEnableGPUServiceLogging,
1461 switches::kEnableIconNtp, 1461 switches::kEnableIconNtp,
1462 switches::kEnableLinkDisambiguationPopup, 1462 switches::kEnableLinkDisambiguationPopup,
1463 switches::kEnableLowResTiling, 1463 switches::kEnableLowResTiling,
1464 switches::kEnableMediaSuspend, 1464 switches::kEnableMediaSuspend,
1465 switches::kEnableInbandTextTracks, 1465 switches::kEnableInbandTextTracks,
1466 switches::kEnableLCDText, 1466 switches::kEnableLCDText,
1467 switches::kEnableLogging, 1467 switches::kEnableLogging,
1468 switches::kEnableMediaDocumentDownloadButton,
1468 switches::kEnableMemoryBenchmarking, 1469 switches::kEnableMemoryBenchmarking,
1469 switches::kEnableNetworkInformation, 1470 switches::kEnableNetworkInformation,
1470 switches::kEnableNotificationActionIcons, 1471 switches::kEnableNotificationActionIcons,
1471 switches::kEnableOverlayScrollbar, 1472 switches::kEnableOverlayScrollbar,
1472 switches::kEnablePinch, 1473 switches::kEnablePinch,
1473 switches::kEnablePluginPlaceholderTesting, 1474 switches::kEnablePluginPlaceholderTesting,
1474 switches::kEnablePreciseMemoryInfo, 1475 switches::kEnablePreciseMemoryInfo,
1475 switches::kEnablePreferCompositingToLCDText, 1476 switches::kEnablePreferCompositingToLCDText,
1476 switches::kEnableRGBA4444Textures, 1477 switches::kEnableRGBA4444Textures,
1477 switches::kEnableRendererMojoChannel, 1478 switches::kEnableRendererMojoChannel,
(...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after
2819 2820
2820 // Skip widgets in other processes. 2821 // Skip widgets in other processes.
2821 if (rvh->GetProcess()->GetID() != GetID()) 2822 if (rvh->GetProcess()->GetID() != GetID())
2822 continue; 2823 continue;
2823 2824
2824 rvh->OnWebkitPreferencesChanged(); 2825 rvh->OnWebkitPreferencesChanged();
2825 } 2826 }
2826 } 2827 }
2827 2828
2828 } // namespace content 2829 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698