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

Unified Diff: chrome/service/cloud_print/cloud_print_proxy_backend.h

Issue 3945003: Move useful printing backend code from chrome/service/cloud_print to printing... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: resolve merge conflict Created 10 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
Index: chrome/service/cloud_print/cloud_print_proxy_backend.h
===================================================================
--- chrome/service/cloud_print/cloud_print_proxy_backend.h (revision 63553)
+++ chrome/service/cloud_print/cloud_print_proxy_backend.h (working copy)
@@ -9,9 +9,9 @@
#include <string>
#include "base/thread.h"
-#include "chrome/service/cloud_print/print_system.h"
#include "chrome/common/net/url_fetcher.h"
#include "googleurl/src/gurl.h"
+#include "printing/backend/print_backend.h"
class CloudPrintProxyService;
class DictionaryValue;
@@ -27,7 +27,7 @@
// There is a list of printers available that can be registered.
virtual void OnPrinterListAvailable(
- const cloud_print::PrinterList& printer_list) = 0;
+ const printing::PrinterList& printer_list) = 0;
// We successfully authenticated with the cloud print server. This callback
// allows the frontend to persist the tokens.
virtual void OnAuthenticated(const std::string& cloud_print_token,
@@ -59,7 +59,7 @@
const std::string email,
const std::string& proxy_id);
void Shutdown();
- void RegisterPrinters(const cloud_print::PrinterList& printer_list);
+ void RegisterPrinters(const printing::PrinterList& printer_list);
private:
// The real guts of SyncBackendHost, to keep the public client API clean.
@@ -82,4 +82,3 @@
};
#endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_PROXY_BACKEND_H_
-
« no previous file with comments | « chrome/service/cloud_print/cloud_print_proxy.cc ('k') | chrome/service/cloud_print/cloud_print_proxy_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698