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

Unified Diff: content/public/browser/browser_thread.h

Issue 8879013: Deprecate WEBKIT thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update after rebase Created 9 years 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/browser/in_process_webkit/webkit_thread_unittest.cc ('k') | content/shell/shell_browser_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_thread.h
diff --git a/content/public/browser/browser_thread.h b/content/public/browser/browser_thread.h
index 743bec6e550a829b0686297db9b410d465d3499c..cf54b4cb71e364f4c51b755f5d4b53a5f071827c 100644
--- a/content/public/browser/browser_thread.h
+++ b/content/public/browser/browser_thread.h
@@ -64,7 +64,9 @@ class CONTENT_EXPORT BrowserThread {
// This is the "main" thread for WebKit within the browser process when
// NOT in --single-process mode.
- WEBKIT,
+ // Deprecated: Do not design new code to use this thread; see
+ // http://crbug.com/106839
+ WEBKIT_DEPRECATED,
// This is the thread that interacts with the file system.
FILE,
@@ -237,7 +239,7 @@ class CONTENT_EXPORT BrowserThread {
struct DeleteOnIOThread : public DeleteOnThread<IO> { };
struct DeleteOnFileThread : public DeleteOnThread<FILE> { };
struct DeleteOnDBThread : public DeleteOnThread<DB> { };
- struct DeleteOnWebKitThread : public DeleteOnThread<WEBKIT> { };
+ struct DeleteOnWebKitThread : public DeleteOnThread<WEBKIT_DEPRECATED> { };
private:
friend class BrowserThreadImpl;
« no previous file with comments | « content/browser/in_process_webkit/webkit_thread_unittest.cc ('k') | content/shell/shell_browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698