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

Unified Diff: chromeos/dbus/fake_debug_daemon_client.h

Issue 2618683003: Update debugd client. (Closed)
Patch Set: Change result code from bool to int32 at skaus request Created 3 years, 11 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: chromeos/dbus/fake_debug_daemon_client.h
diff --git a/chromeos/dbus/fake_debug_daemon_client.h b/chromeos/dbus/fake_debug_daemon_client.h
index d008880ce4e74dccc6a772d4a0200457efbd8921..00e8dce4009bda28844c66a00cbe093e4835e840 100644
--- a/chromeos/dbus/fake_debug_daemon_client.h
+++ b/chromeos/dbus/fake_debug_daemon_client.h
@@ -76,8 +76,19 @@ class CHROMEOS_EXPORT FakeDebugDaemonClient : public DebugDaemonClient {
const std::string& uri,
const std::string& ppd_path,
bool ipp_everywhere,
- const CupsAddPrinterCallback& callback,
+ const LegacyCupsAddPrinterCallback& callback,
const base::Closure& error_callback) override;
+ void CupsAddManuallyConfiguredPrinter(
+ const std::string& name,
+ const std::string& uri,
+ const std::string& ppd_contents,
+ const CupsAddPrinterCallback& callback,
+ const base::Closure& error_callback) override;
+ void CupsAddAutoConfiguredPrinter(
+ const std::string& name,
+ const std::string& uri,
+ const CupsAddPrinterCallback& callback,
+ const base::Closure& error_callback) override;
void CupsRemovePrinter(const std::string& name,
const CupsRemovePrinterCallback& callback,
const base::Closure& error_callback) override;

Powered by Google App Engine
This is Rietveld 408576698