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

Unified Diff: content/renderer/renderer_main_thread.h

Issue 23452016: Fix names of in-process threads, tidy gpu DEPS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: deps for webview Created 7 years, 3 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 | « content/renderer/in_process_renderer_thread.cc ('k') | content/renderer/renderer_main_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_main_thread.h
diff --git a/content/renderer/renderer_main_thread.h b/content/renderer/renderer_main_thread.h
deleted file mode 100644
index dca7cb81fb28325d30ff87895e73c1ea59c28173..0000000000000000000000000000000000000000
--- a/content/renderer/renderer_main_thread.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_RENDERER_RENDERER_MAIN_THREAD_H_
-#define CONTENT_RENDERER_RENDERER_MAIN_THREAD_H_
-
-#include <string>
-
-#include "base/threading/thread.h"
-#include "content/common/content_export.h"
-
-namespace content {
-class RenderProcess;
-
-// This class creates the IO thread for the renderer when running in
-// single-process mode. It's not used in multi-process mode.
-class RendererMainThread : public base::Thread {
- public:
- explicit RendererMainThread(const std::string& channel_id);
- virtual ~RendererMainThread();
-
- protected:
- virtual void Init() OVERRIDE;
- virtual void CleanUp() OVERRIDE;
-
- private:
- std::string channel_id_;
- scoped_ptr<RenderProcess> render_process_;
-
- DISALLOW_COPY_AND_ASSIGN(RendererMainThread);
-};
-
-CONTENT_EXPORT base::Thread* CreateRendererMainThread(
- const std::string& channel_id);
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_RENDERER_MAIN_THREAD_H_
« no previous file with comments | « content/renderer/in_process_renderer_thread.cc ('k') | content/renderer/renderer_main_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698