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

Side by Side Diff: content/browser/browser_child_process_host_impl.h

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
6 #define CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 21 matching lines...) Expand all
32 virtual ~BrowserChildProcessHostImpl(); 32 virtual ~BrowserChildProcessHostImpl();
33 33
34 // Terminates all child processes and deletes each BrowserChildProcessHost 34 // Terminates all child processes and deletes each BrowserChildProcessHost
35 // instance. 35 // instance.
36 static void TerminateAll(); 36 static void TerminateAll();
37 37
38 // BrowserChildProcessHost implementation: 38 // BrowserChildProcessHost implementation:
39 virtual bool Send(IPC::Message* message) OVERRIDE; 39 virtual bool Send(IPC::Message* message) OVERRIDE;
40 virtual void Launch( 40 virtual void Launch(
41 #if defined(OS_WIN) 41 #if defined(OS_WIN)
42 const FilePath& exposed_dir, 42 const base::FilePath& exposed_dir,
43 #elif defined(OS_POSIX) 43 #elif defined(OS_POSIX)
44 bool use_zygote, 44 bool use_zygote,
45 const base::EnvironmentVector& environ, 45 const base::EnvironmentVector& environ,
46 #endif 46 #endif
47 CommandLine* cmd_line) OVERRIDE; 47 CommandLine* cmd_line) OVERRIDE;
48 virtual const ChildProcessData& GetData() const OVERRIDE; 48 virtual const ChildProcessData& GetData() const OVERRIDE;
49 virtual ChildProcessHost* GetHost() const OVERRIDE; 49 virtual ChildProcessHost* GetHost() const OVERRIDE;
50 virtual base::TerminationStatus GetTerminationStatus(int* exit_code) OVERRIDE; 50 virtual base::TerminationStatus GetTerminationStatus(int* exit_code) OVERRIDE;
51 virtual void SetName(const string16& name) OVERRIDE; 51 virtual void SetName(const string16& name) OVERRIDE;
52 virtual void SetHandle(base::ProcessHandle handle) OVERRIDE; 52 virtual void SetHandle(base::ProcessHandle handle) OVERRIDE;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ChildProcessData data_; 87 ChildProcessData data_;
88 BrowserChildProcessHostDelegate* delegate_; 88 BrowserChildProcessHostDelegate* delegate_;
89 scoped_ptr<ChildProcessHost> child_process_host_; 89 scoped_ptr<ChildProcessHost> child_process_host_;
90 90
91 scoped_ptr<ChildProcessLauncher> child_process_; 91 scoped_ptr<ChildProcessLauncher> child_process_;
92 }; 92 };
93 93
94 } // namespace content 94 } // namespace content
95 95
96 #endif // CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ 96 #endif // CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/appcache/chrome_appcache_service_unittest.cc ('k') | content/browser/browser_child_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698