OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_KEYSTONE_OBSERVER_MAC_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_KEYSTONE_OBSERVER_MAC_DELEGATE_H_ |
| 7 |
| 8 #include "chrome/browser/mac/keystone_glue.h" |
| 9 |
| 10 namespace autofill { |
| 11 |
| 12 // Defines an interface that the AutofillKeystoneObserverMac's delegate must |
| 13 // implement. |
| 14 class AutofillKeystoneObserverMacDelegate { |
| 15 public: |
| 16 virtual void OnKeystoneNotification( |
| 17 keystone_glue::AutoupdateStatus status) = 0; |
| 18 }; |
| 19 |
| 20 } // namespace autofill |
| 21 |
| 22 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_KEYSTONE_OBSERVER_MAC_DELEGATE_H_ |
OLD | NEW |