Chromium Code Reviews| Index: chrome/browser/autofill/autofill_keystone_observer_mac_delegate.h |
| diff --git a/chrome/browser/autofill/autofill_keystone_observer_mac_delegate.h b/chrome/browser/autofill/autofill_keystone_observer_mac_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7fe46b1c2f844abbd9e01a3b4323728b8723be62 |
| --- /dev/null |
| +++ b/chrome/browser/autofill/autofill_keystone_observer_mac_delegate.h |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_KEYSTONE_OBSERVER_MAC_DELEGATE_H_ |
| +#define CHROME_BROWSER_AUTOFILL_AUTOFILL_KEYSTONE_OBSERVER_MAC_DELEGATE_H_ |
| + |
| +#include "chrome/browser/mac/keystone_glue.h" |
| + |
| +// Defines an interface that the AutofillKeystoneObserverMac's delegate must |
| +// implement. |
| +class AutofillKeystoneObserverMacDelegate { |
| + public: |
| + virtual void OnKeystoneNotification( |
| + keystone_glue::AutoupdateStatus status) = 0; |
| +}; |
|
Ilya Sherman
2014/06/14 01:18:51
nit: Should this be in the autofill namespace?
erikchen
2014/06/16 20:30:45
Yes, done.
|
| + |
| +#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_KEYSTONE_OBSERVER_MAC_DELEGATE_H_ |