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

Side by Side Diff: chrome/renderer/render_process.h

Issue 18622: POSIX: Porting renderer/render_process.cc, low hanging fruit (Closed)
Patch Set: Created 11 years, 11 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
« no previous file with comments | « base/sys_info_win.cc ('k') | chrome/renderer/render_process.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 CHROME_RENDERER_RENDER_PROCESS_H__ 5 #ifndef CHROME_RENDERER_RENDER_PROCESS_H__
6 #define CHROME_RENDERER_RENDER_PROCESS_H__ 6 #define CHROME_RENDERER_RENDER_PROCESS_H__
7 7
8 #include <objidl.h>
9 #include <mlang.h>
10
11 #include "base/shared_memory.h" 8 #include "base/shared_memory.h"
12 #include "chrome/common/child_process.h" 9 #include "chrome/common/child_process.h"
13 #include "chrome/renderer/render_thread.h" 10 #include "chrome/renderer/render_thread.h"
14 11
15 class RenderView; 12 class RenderView;
16 13
17 // Represents the renderer end of the browser<->renderer connection. The 14 // Represents the renderer end of the browser<->renderer connection. The
18 // opposite end is the RenderProcessHost. This is a singleton object for 15 // opposite end is the RenderProcessHost. This is a singleton object for
19 // each renderer. 16 // each renderer.
20 class RenderProcess : public ChildProcess { 17 class RenderProcess : public ChildProcess {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 // This factory is used to lazily invoke ClearSharedMemCache. 78 // This factory is used to lazily invoke ClearSharedMemCache.
82 ScopedRunnableMethodFactory<RenderProcess> clearer_factory_; 79 ScopedRunnableMethodFactory<RenderProcess> clearer_factory_;
83 80
84 static bool load_plugins_in_process_; 81 static bool load_plugins_in_process_;
85 82
86 DISALLOW_EVIL_CONSTRUCTORS(RenderProcess); 83 DISALLOW_EVIL_CONSTRUCTORS(RenderProcess);
87 }; 84 };
88 85
89 #endif // CHROME_RENDERER_RENDER_PROCESS_H__ 86 #endif // CHROME_RENDERER_RENDER_PROCESS_H__
90 87
OLDNEW
« no previous file with comments | « base/sys_info_win.cc ('k') | chrome/renderer/render_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698