Commit 68621919 authored by mdm@chromium.org's avatar mdm@chromium.org

Small comment updates. No code change.

BUG=none
TEST=none


git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25773 0039d316-1c4b-4281-b951-d872f2087c98
parent 3d9ca6bb
...@@ -164,7 +164,7 @@ TrimPositions TrimWhitespace(const std::string& input, ...@@ -164,7 +164,7 @@ TrimPositions TrimWhitespace(const std::string& input,
// Searches for CR or LF characters. Removes all contiguous whitespace // Searches for CR or LF characters. Removes all contiguous whitespace
// strings that contain them. This is useful when trying to deal with text // strings that contain them. This is useful when trying to deal with text
// copied from terminals. // copied from terminals.
// Returns |text, with the following three transformations: // Returns |text|, with the following three transformations:
// (1) Leading and trailing whitespace is trimmed. // (1) Leading and trailing whitespace is trimmed.
// (2) If |trim_sequences_with_line_breaks| is true, any other whitespace // (2) If |trim_sequences_with_line_breaks| is true, any other whitespace
// sequences containing a CR or LF are trimmed. // sequences containing a CR or LF are trimmed.
......
...@@ -166,9 +166,9 @@ class CreateDesktopShortcutTask : public Task { ...@@ -166,9 +166,9 @@ class CreateDesktopShortcutTask : public Task {
} // namespace } // namespace
// We delegate the difficult of setting the default browser in Linux desktop // We delegate the difficulty of setting the default browser in Linux desktop
// environments to a new xdg utility, xdg-settings. We'll have to include a copy // environments to a new xdg utility, xdg-settings. We have to include a copy of
// of it for this to work, obviously, but that's actually the suggested approach // it for this to work, obviously, but that's actually the suggested approach
// for xdg utilities anyway. // for xdg utilities anyway.
bool ShellIntegration::SetAsDefaultBrowser() { bool ShellIntegration::SetAsDefaultBrowser() {
......
...@@ -66,6 +66,7 @@ ZygoteHost::ZygoteHost() { ...@@ -66,6 +66,7 @@ ZygoteHost::ZygoteHost() {
} }
// Append any switches from the browser process that need to be forwarded on // Append any switches from the browser process that need to be forwarded on
// to the zygote/renderers. // to the zygote/renderers.
// Should this list be obtained from browser_render_process_host.cc?
if (browser_command_line.HasSwitch(switches::kAllowSandboxDebugging)) { if (browser_command_line.HasSwitch(switches::kAllowSandboxDebugging)) {
cmd_line.AppendSwitch(switches::kAllowSandboxDebugging); cmd_line.AppendSwitch(switches::kAllowSandboxDebugging);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment