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

Unified Diff: chrome/browser/printing/print_dialog_gtk.h

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 2 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 | « chrome/browser/printing/print_dialog_cloud_unittest.cc ('k') | chrome/browser/printing/print_dialog_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/printing/print_dialog_gtk.h
diff --git a/chrome/browser/printing/print_dialog_gtk.h b/chrome/browser/printing/print_dialog_gtk.h
index 7b952551c597ab827fc65b77292d695cccb19b6b..55dbb95d1e4b83ee812343688327ff5aaca62d1d 100644
--- a/chrome/browser/printing/print_dialog_gtk.h
+++ b/chrome/browser/printing/print_dialog_gtk.h
@@ -28,8 +28,8 @@ using printing::PrintingContextCairo;
// Needs to be freed on the UI thread to clean up its GTK members variables.
class PrintDialogGtk
: public printing::PrintDialogGtkInterface,
- public base::RefCountedThreadSafe<PrintDialogGtk,
- BrowserThread::DeleteOnUIThread> {
+ public base::RefCountedThreadSafe<
+ PrintDialogGtk, content::BrowserThread::DeleteOnUIThread> {
public:
// Creates and returns a print dialog.
static printing::PrintDialogGtkInterface* CreatePrintDialog(
@@ -48,7 +48,8 @@ class PrintDialogGtk
virtual void ReleaseDialog() OVERRIDE;
private:
- friend struct BrowserThread::DeleteOnThread<BrowserThread::UI>;
+ friend struct content::BrowserThread::DeleteOnThread<
+ content::BrowserThread::UI>;
friend class DeleteTask<PrintDialogGtk>;
explicit PrintDialogGtk(PrintingContextCairo* context);
« no previous file with comments | « chrome/browser/printing/print_dialog_cloud_unittest.cc ('k') | chrome/browser/printing/print_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698