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

Side by Side Diff: content/browser/browser_child_process_host.cc

Issue 6657003: Update a bunch of files to the new location of notification files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/appcache/chrome_appcache_service.cc ('k') | content/browser/cert_store.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "content/browser/browser_child_process_host.h" 5 #include "content/browser/browser_child_process_host.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/metrics/histogram.h" 11 #include "base/metrics/histogram.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/process_util.h" 13 #include "base/process_util.h"
14 #include "base/stl_util-inl.h" 14 #include "base/stl_util-inl.h"
15 #include "base/string_util.h" 15 #include "base/string_util.h"
16 #include "chrome/app/breakpad_mac.h" 16 #include "chrome/app/breakpad_mac.h"
17 #include "chrome/common/child_process_logging.h" 17 #include "chrome/common/child_process_logging.h"
18 #include "chrome/common/chrome_constants.h" 18 #include "chrome/common/chrome_constants.h"
19 #include "chrome/common/chrome_paths_internal.h" 19 #include "chrome/common/chrome_paths_internal.h"
20 #include "chrome/common/chrome_switches.h" 20 #include "chrome/common/chrome_switches.h"
21 #include "chrome/common/notification_service.h"
22 #include "chrome/common/plugin_messages.h" 21 #include "chrome/common/plugin_messages.h"
23 #include "chrome/common/process_watcher.h" 22 #include "chrome/common/process_watcher.h"
24 #include "chrome/common/result_codes.h" 23 #include "chrome/common/result_codes.h"
25 #include "chrome/installer/util/google_update_settings.h" 24 #include "chrome/installer/util/google_update_settings.h"
26 #include "content/browser/browser_thread.h" 25 #include "content/browser/browser_thread.h"
26 #include "content/common/notification_service.h"
27 27
28 #if defined(OS_LINUX) 28 #if defined(OS_LINUX)
29 #include "base/linux_util.h" 29 #include "base/linux_util.h"
30 #endif // OS_LINUX 30 #endif // OS_LINUX
31 31
32 namespace { 32 namespace {
33 33
34 typedef std::list<BrowserChildProcessHost*> ChildProcessList; 34 typedef std::list<BrowserChildProcessHost*> ChildProcessList;
35 static base::LazyInstance<ChildProcessList> g_child_process_list( 35 static base::LazyInstance<ChildProcessList> g_child_process_list(
36 base::LINKER_INITIALIZED); 36 base::LINKER_INITIALIZED);
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 return *iterator_; 241 return *iterator_;
242 } while (true); 242 } while (true);
243 243
244 return NULL; 244 return NULL;
245 } 245 }
246 246
247 bool BrowserChildProcessHost::Iterator::Done() { 247 bool BrowserChildProcessHost::Iterator::Done() {
248 return iterator_ == g_child_process_list.Get().end(); 248 return iterator_ == g_child_process_list.Get().end();
249 } 249 }
OLDNEW
« no previous file with comments | « content/browser/appcache/chrome_appcache_service.cc ('k') | content/browser/cert_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698