diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 21:55:55 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 21:55:55 +0000 |
commit | 580522638fdabb4d48fe2eae68f263f61fda3129 (patch) | |
tree | c647913d4de33a69929a9d0dbfec7b17da678f5e /chrome/browser/child_process_security_policy.h | |
parent | 228890ac838a1b27efac2c8e379e005254ae126a (diff) | |
download | chromium_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.h')
-rw-r--r-- | chrome/browser/child_process_security_policy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/child_process_security_policy.h b/chrome/browser/child_process_security_policy.h index bc905bb..402cd1b 100644 --- a/chrome/browser/child_process_security_policy.h +++ b/chrome/browser/child_process_security_policy.h @@ -30,9 +30,9 @@ class ChildProcessSecurityPolicy { // private. ~ChildProcessSecurityPolicy(); - // There is one global ChildProcessSecurityPolicy object for the entire browser - // processes. The object returned by this method may be accessed on any - // thread. + // There is one global ChildProcessSecurityPolicy object for the entire + // browser process. The object returned by this method may be accessed on + // any thread. static ChildProcessSecurityPolicy* GetInstance(); // Web-safe schemes can be requested by any renderer. Once a web-safe scheme |