OLD | NEW |
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 Loading... |
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 |
OLD | NEW |