| Index: chrome/service/cloud_print/print_system.h
|
| diff --git a/chrome/service/cloud_print/print_system.h b/chrome/service/cloud_print/print_system.h
|
| index 2da5f31ecbed5b64fea932a2596e91eb8c467437..6e06bae11db71944f96441ac1cda806032c5ed0b 100644
|
| --- a/chrome/service/cloud_print/print_system.h
|
| +++ b/chrome/service/cloud_print/print_system.h
|
| @@ -74,12 +74,12 @@ class PrintSystem : public base::RefCountedThreadSafe<PrintSystem> {
|
| public:
|
| // Callback interface for new printer notifications.
|
| class Delegate {
|
| - public:
|
| - virtual void OnPrinterAdded() = 0;
|
| - // TODO(gene): Do we need OnPrinterDeleted notification here?
|
| + public:
|
| + virtual void OnPrinterAdded() = 0;
|
| + // TODO(gene): Do we need OnPrinterDeleted notification here?
|
|
|
| - protected:
|
| - virtual ~Delegate() {}
|
| + protected:
|
| + virtual ~Delegate() {}
|
| };
|
|
|
| virtual bool StartWatching(PrintServerWatcher::Delegate* delegate) = 0;
|
| @@ -94,13 +94,13 @@ class PrintSystem : public base::RefCountedThreadSafe<PrintSystem> {
|
| public:
|
| // Callback interface for printer updates notifications.
|
| class Delegate {
|
| - public:
|
| - virtual void OnPrinterDeleted() = 0;
|
| - virtual void OnPrinterChanged() = 0;
|
| - virtual void OnJobChanged() = 0;
|
| + public:
|
| + virtual void OnPrinterDeleted() = 0;
|
| + virtual void OnPrinterChanged() = 0;
|
| + virtual void OnJobChanged() = 0;
|
|
|
| - protected:
|
| - virtual ~Delegate() {}
|
| + protected:
|
| + virtual ~Delegate() {}
|
| };
|
|
|
| virtual bool StartWatching(PrinterWatcher::Delegate* delegate) = 0;
|
|
|