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

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

Issue 13243003: Move MessageLoop to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
Index: chrome/browser/printing/printer_query.h
diff --git a/chrome/browser/printing/printer_query.h b/chrome/browser/printing/printer_query.h
index 80545c77172cd05e292d68a19a3573f2d76f816f..3256a917b718c197f044117a0e4a66ecbf43962e 100644
--- a/chrome/browser/printing/printer_query.h
+++ b/chrome/browser/printing/printer_query.h
@@ -12,10 +12,9 @@
#include "printing/print_job_constants.h"
#include "ui/gfx/native_widget_types.h"
-class MessageLoop;
-
namespace base {
class DictionaryValue;
+class MessageLoop;
}
namespace printing {
@@ -38,7 +37,7 @@ class PrinterQuery : public PrintJobWorkerOwner {
virtual void GetSettingsDone(const PrintSettings& new_settings,
PrintingContext::Result result) OVERRIDE;
virtual PrintJobWorker* DetachWorker(PrintJobWorkerOwner* new_owner) OVERRIDE;
- virtual MessageLoop* message_loop() OVERRIDE;
+ virtual base::MessageLoop* message_loop() OVERRIDE;
virtual const PrintSettings& settings() const OVERRIDE;
virtual int cookie() const OVERRIDE;
@@ -79,7 +78,7 @@ class PrinterQuery : public PrintJobWorkerOwner {
// Main message loop reference. Used to send notifications in the right
// thread.
- MessageLoop* const io_message_loop_;
+ base::MessageLoop* const io_message_loop_;
// All the UI is done in a worker thread because many Win32 print functions
// are blocking and enters a message loop without your consent. There is one
« no previous file with comments | « chrome/browser/printing/print_job_worker_owner.h ('k') | chrome/browser/safe_browsing/safe_browsing_blocking_page.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698