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

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

Issue 136203009: Support auto-reload on errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: placate clang Created 6 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 (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 <set> 7 #include <set>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 1563 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 switches::kDisableExtensionsResourceWhitelist, 1574 switches::kDisableExtensionsResourceWhitelist,
1575 switches::kDisablePnacl, 1575 switches::kDisablePnacl,
1576 switches::kDisableScriptedPrintThrottling, 1576 switches::kDisableScriptedPrintThrottling,
1577 switches::kEnableAdview, 1577 switches::kEnableAdview,
1578 switches::kEnableAppWindowControls, 1578 switches::kEnableAppWindowControls,
1579 switches::kEnableBenchmarking, 1579 switches::kEnableBenchmarking,
1580 switches::kEnableNaCl, 1580 switches::kEnableNaCl,
1581 switches::kEnableNaClDebug, 1581 switches::kEnableNaClDebug,
1582 switches::kEnableNaClNonSfiMode, 1582 switches::kEnableNaClNonSfiMode,
1583 switches::kEnableNetBenchmarking, 1583 switches::kEnableNetBenchmarking,
1584 switches::kEnableOfflineAutoReload,
1584 switches::kEnableStreamlinedHostedApps, 1585 switches::kEnableStreamlinedHostedApps,
1585 switches::kEnableWatchdog, 1586 switches::kEnableWatchdog,
1586 switches::kMemoryProfiling, 1587 switches::kMemoryProfiling,
1587 switches::kMessageLoopHistogrammer, 1588 switches::kMessageLoopHistogrammer,
1588 switches::kNoJsRandomness, 1589 switches::kNoJsRandomness,
1589 switches::kOutOfProcessPdf, 1590 switches::kOutOfProcessPdf,
1590 switches::kPlaybackMode, 1591 switches::kPlaybackMode,
1591 switches::kPpapiFlashArgs, 1592 switches::kPpapiFlashArgs,
1592 switches::kPpapiFlashPath, 1593 switches::kPpapiFlashPath,
1593 switches::kPpapiFlashVersion, 1594 switches::kPpapiFlashVersion,
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after
2737 switches::kDisableWebRtcEncryption, 2738 switches::kDisableWebRtcEncryption,
2738 }; 2739 };
2739 to_command_line->CopySwitchesFrom(from_command_line, 2740 to_command_line->CopySwitchesFrom(from_command_line,
2740 kWebRtcDevSwitchNames, 2741 kWebRtcDevSwitchNames,
2741 arraysize(kWebRtcDevSwitchNames)); 2742 arraysize(kWebRtcDevSwitchNames));
2742 } 2743 }
2743 } 2744 }
2744 #endif // defined(ENABLE_WEBRTC) 2745 #endif // defined(ENABLE_WEBRTC)
2745 2746
2746 } // namespace chrome 2747 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698