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

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

Issue 1894143002: Delete the NotificationActionIcons flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address johnme's comments. 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 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after
1462 switches::kEnableIconNtp, 1462 switches::kEnableIconNtp,
1463 switches::kEnableLinkDisambiguationPopup, 1463 switches::kEnableLinkDisambiguationPopup,
1464 switches::kEnableLowResTiling, 1464 switches::kEnableLowResTiling,
1465 switches::kEnableMediaSuspend, 1465 switches::kEnableMediaSuspend,
1466 switches::kEnableMojoChannel, 1466 switches::kEnableMojoChannel,
1467 switches::kEnableInbandTextTracks, 1467 switches::kEnableInbandTextTracks,
1468 switches::kEnableLCDText, 1468 switches::kEnableLCDText,
1469 switches::kEnableLogging, 1469 switches::kEnableLogging,
1470 switches::kEnableMemoryBenchmarking, 1470 switches::kEnableMemoryBenchmarking,
1471 switches::kEnableNetworkInformation, 1471 switches::kEnableNetworkInformation,
1472 switches::kEnableNotificationActionIcons,
1473 switches::kEnableOverlayScrollbar, 1472 switches::kEnableOverlayScrollbar,
1474 switches::kEnablePinch, 1473 switches::kEnablePinch,
1475 switches::kEnablePluginPlaceholderTesting, 1474 switches::kEnablePluginPlaceholderTesting,
1476 switches::kEnablePreciseMemoryInfo, 1475 switches::kEnablePreciseMemoryInfo,
1477 switches::kEnablePreferCompositingToLCDText, 1476 switches::kEnablePreferCompositingToLCDText,
1478 switches::kEnableRGBA4444Textures, 1477 switches::kEnableRGBA4444Textures,
1479 switches::kEnableSkiaBenchmarking, 1478 switches::kEnableSkiaBenchmarking,
1480 switches::kEnableSlimmingPaintV2, 1479 switches::kEnableSlimmingPaintV2,
1481 switches::kEnableSmoothScrolling, 1480 switches::kEnableSmoothScrolling,
1482 switches::kEnableStatsTable, 1481 switches::kEnableStatsTable,
(...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after
2842 2841
2843 // Skip widgets in other processes. 2842 // Skip widgets in other processes.
2844 if (rvh->GetProcess()->GetID() != GetID()) 2843 if (rvh->GetProcess()->GetID() != GetID())
2845 continue; 2844 continue;
2846 2845
2847 rvh->OnWebkitPreferencesChanged(); 2846 rvh->OnWebkitPreferencesChanged();
2848 } 2847 }
2849 } 2848 }
2850 2849
2851 } // namespace content 2850 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/notifications/platform_notification_service_browsertest.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698