diff options
author | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-09 23:00:07 +0000 |
---|---|---|
committer | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-09 23:00:07 +0000 |
commit | 60b122deac5637b413268a9b67eb89e0cac1e135 (patch) | |
tree | 7db017984acc1a0b06008b38c15621e1606b1286 /content/browser/browser_main_loop.h | |
parent | 41f558fb4e01860f0b426500d7f6108686dfb024 (diff) | |
download | chromium_src-60b122deac5637b413268a9b67eb89e0cac1e135.zip chromium_src-60b122deac5637b413268a9b67eb89e0cac1e135.tar.gz chromium_src-60b122deac5637b413268a9b67eb89e0cac1e135.tar.bz2 |
Add Comment above browser thread variables of BrowserMainLoop Class
Contributed by simon.hong81@gmail.com
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/9095003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116943 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/browser_main_loop.h')
-rw-r--r-- | content/browser/browser_main_loop.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h index 6628200..b645de7 100644 --- a/content/browser/browser_main_loop.h +++ b/content/browser/browser_main_loop.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -79,6 +79,8 @@ class BrowserMainLoop { // Members initialized in |InitializeMainThread()| --------------------------- // This must get destroyed before other threads that are created in parts_. scoped_ptr<BrowserThreadImpl> main_thread_; + + // Members initialized in |RunMainMessageLoopParts()| ------------------------ scoped_ptr<BrowserProcessSubThread> db_thread_; scoped_ptr<WebKitThread> webkit_thread_; scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_; |