Commit 4aa73aea authored by vitalybuka's avatar vitalybuka Committed by Commit bot

Fixed indentation.

NOTRY=true

Review URL: https://codereview.chromium.org/576563002

Cr-Commit-Position: refs/heads/master@{#294948}
parent e1d2b178
...@@ -74,12 +74,12 @@ class PrintSystem : public base::RefCountedThreadSafe<PrintSystem> { ...@@ -74,12 +74,12 @@ class PrintSystem : public base::RefCountedThreadSafe<PrintSystem> {
public: public:
// Callback interface for new printer notifications. // Callback interface for new printer notifications.
class Delegate { class Delegate {
public: public:
virtual void OnPrinterAdded() = 0; virtual void OnPrinterAdded() = 0;
// TODO(gene): Do we need OnPrinterDeleted notification here? // TODO(gene): Do we need OnPrinterDeleted notification here?
protected: protected:
virtual ~Delegate() {} virtual ~Delegate() {}
}; };
virtual bool StartWatching(PrintServerWatcher::Delegate* delegate) = 0; virtual bool StartWatching(PrintServerWatcher::Delegate* delegate) = 0;
...@@ -94,13 +94,13 @@ class PrintSystem : public base::RefCountedThreadSafe<PrintSystem> { ...@@ -94,13 +94,13 @@ class PrintSystem : public base::RefCountedThreadSafe<PrintSystem> {
public: public:
// Callback interface for printer updates notifications. // Callback interface for printer updates notifications.
class Delegate { class Delegate {
public: public:
virtual void OnPrinterDeleted() = 0; virtual void OnPrinterDeleted() = 0;
virtual void OnPrinterChanged() = 0; virtual void OnPrinterChanged() = 0;
virtual void OnJobChanged() = 0; virtual void OnJobChanged() = 0;
protected: protected:
virtual ~Delegate() {} virtual ~Delegate() {}
}; };
virtual bool StartWatching(PrinterWatcher::Delegate* delegate) = 0; virtual bool StartWatching(PrinterWatcher::Delegate* delegate) = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment