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

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

Issue 1693583002: Add browser test for notification action icons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ActionIconToJava
Patch Set: Created 4 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
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 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after
1437 switches::kEnableGPUServiceLogging, 1437 switches::kEnableGPUServiceLogging,
1438 switches::kEnableIconNtp, 1438 switches::kEnableIconNtp,
1439 switches::kEnableLinkDisambiguationPopup, 1439 switches::kEnableLinkDisambiguationPopup,
1440 switches::kEnableLowResTiling, 1440 switches::kEnableLowResTiling,
1441 switches::kEnableMediaSuspend, 1441 switches::kEnableMediaSuspend,
1442 switches::kEnableInbandTextTracks, 1442 switches::kEnableInbandTextTracks,
1443 switches::kEnableLCDText, 1443 switches::kEnableLCDText,
1444 switches::kEnableLogging, 1444 switches::kEnableLogging,
1445 switches::kEnableMemoryBenchmarking, 1445 switches::kEnableMemoryBenchmarking,
1446 switches::kEnableNetworkInformation, 1446 switches::kEnableNetworkInformation,
1447 switches::kEnableNotificationActionIcons,
1447 switches::kEnableOverlayScrollbar, 1448 switches::kEnableOverlayScrollbar,
1448 switches::kEnablePinch, 1449 switches::kEnablePinch,
1449 switches::kEnablePluginPlaceholderTesting, 1450 switches::kEnablePluginPlaceholderTesting,
1450 switches::kEnablePreciseMemoryInfo, 1451 switches::kEnablePreciseMemoryInfo,
1451 switches::kEnablePreferCompositingToLCDText, 1452 switches::kEnablePreferCompositingToLCDText,
1452 switches::kEnablePrefixedEncryptedMedia, 1453 switches::kEnablePrefixedEncryptedMedia,
1453 switches::kEnableRGBA4444Textures, 1454 switches::kEnableRGBA4444Textures,
1454 switches::kEnableRendererMojoChannel, 1455 switches::kEnableRendererMojoChannel,
1455 switches::kEnableSkiaBenchmarking, 1456 switches::kEnableSkiaBenchmarking,
1456 switches::kEnableSlimmingPaintV2, 1457 switches::kEnableSlimmingPaintV2,
(...skipping 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after
2782 void RenderProcessHostImpl::GetAudioOutputControllers( 2783 void RenderProcessHostImpl::GetAudioOutputControllers(
2783 const GetAudioOutputControllersCallback& callback) const { 2784 const GetAudioOutputControllersCallback& callback) const {
2784 audio_renderer_host()->GetOutputControllers(callback); 2785 audio_renderer_host()->GetOutputControllers(callback);
2785 } 2786 }
2786 2787
2787 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2788 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2788 return bluetooth_dispatcher_host_.get(); 2789 return bluetooth_dispatcher_host_.get();
2789 } 2790 }
2790 2791
2791 } // namespace content 2792 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698