summaryrefslogtreecommitdiffstats
path: root/chrome/browser/child_process_security_policy_unittest.cc
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-17 21:55:55 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-17 21:55:55 +0000
commit580522638fdabb4d48fe2eae68f263f61fda3129 (patch)
treec647913d4de33a69929a9d0dbfec7b17da678f5e /chrome/browser/child_process_security_policy_unittest.cc
parent228890ac838a1b27efac2c8e379e005254ae126a (diff)
downloadchromium_src-580522638fdabb4d48fe2eae68f263f61fda3129.zip
chromium_src-580522638fdabb4d48fe2eae68f263f61fda3129.tar.gz
chromium_src-580522638fdabb4d48fe2eae68f263f61fda3129.tar.bz2
Cleaning up lines longer than 80 chars under src/chrome/browser.
Command: awk '{if ( length($0) > 80 ) { print FILENAME, FNR, $0 } }' *.cc *.h # recursive find . -type f \( -name '*.cc' -o -name '*.h' \) -exec awk '{if ( length($0) > 80 ) { print FILENAME, FNR, $0 } }' {} \; Patch by Pierre-Antoine LaFayette <pierre.lafayette@gmail.com> BUG=None TEST=None Code review URL: http://codereview.chromium.org/164566 Review URL: http://codereview.chromium.org/171066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23583 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/child_process_security_policy_unittest.cc')
-rw-r--r--chrome/browser/child_process_security_policy_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/child_process_security_policy_unittest.cc b/chrome/browser/child_process_security_policy_unittest.cc
index 88f1e33..1cdccc9 100644
--- a/chrome/browser/child_process_security_policy_unittest.cc
+++ b/chrome/browser/child_process_security_policy_unittest.cc
@@ -258,8 +258,8 @@ TEST_F(ChildProcessSecurityPolicyTest, RemoveRace) {
p->Remove(kRendererID);
// Renderers are added and removed on the UI thread, but the policy can be
- // queried on the IO thread. The ChildProcessSecurityPolicy needs to be prepared
- // to answer policy questions about renderers who no longer exist.
+ // queried on the IO thread. The ChildProcessSecurityPolicy needs to be
+ // prepared to answer policy questions about renderers who no longer exist.
// In this case, we default to secure behavior.
EXPECT_FALSE(p->CanRequestURL(kRendererID, url));