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 // Defines an interface that the AutofillKeystoneObserverMac's delegate must | |
11 // implement. | |
12 class AutofillKeystoneObserverMacDelegate { | |
13 public: | |
14 virtual void OnKeystoneNotification( | |
15 keystone_glue::AutoupdateStatus status) = 0; | |
16 }; | |
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.
| |
17 | |
18 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_KEYSTONE_OBSERVER_MAC_DELEGATE_H_ | |
OLD | NEW |