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

Unified Diff: chrome/renderer/render_process.h

Issue 20112: Cleanup forward declared classes that are not needed. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/renderer/render_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_process.h
===================================================================
--- chrome/renderer/render_process.h (revision 9264)
+++ chrome/renderer/render_process.h (working copy)
@@ -9,8 +9,6 @@
#include "chrome/common/child_process.h"
#include "chrome/renderer/render_thread.h"
-class RenderView;
-
// Represents the renderer end of the browser<->renderer connection. The
// opposite end is the RenderProcessHost. This is a singleton object for
// each renderer.
@@ -38,7 +36,7 @@
private:
friend class ChildProcessFactory<RenderProcess>;
- RenderProcess(const std::wstring& channel_name);
+ explicit RenderProcess(const std::wstring& channel_name);
~RenderProcess();
// Returns a pointer to the RenderProcess singleton instance. This is
@@ -80,8 +78,7 @@
static bool load_plugins_in_process_;
- DISALLOW_EVIL_CONSTRUCTORS(RenderProcess);
+ DISALLOW_COPY_AND_ASSIGN(RenderProcess);
};
#endif // CHROME_RENDERER_RENDER_PROCESS_H__
-
« no previous file with comments | « no previous file | chrome/renderer/render_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698