Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: components/autofill/ios/browser/personal_data_manager_observer_bridge.h

Issue 2849533003: [ObjC ARC] Converts components/autofill/ios/browser:browser to ARC. (Closed)
Patch Set: Address comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_AUTOFILL_IOS_BROWSER_PERSONAL_DATA_MANAGER_OBSERVER_BRIDGE_H_ 5 #ifndef COMPONENTS_AUTOFILL_IOS_BROWSER_PERSONAL_DATA_MANAGER_OBSERVER_BRIDGE_H_
6 #define COMPONENTS_AUTOFILL_IOS_BROWSER_PERSONAL_DATA_MANAGER_OBSERVER_BRIDGE_H_ 6 #define COMPONENTS_AUTOFILL_IOS_BROWSER_PERSONAL_DATA_MANAGER_OBSERVER_BRIDGE_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 22 matching lines...) Expand all
33 public: 33 public:
34 explicit PersonalDataManagerObserverBridge( 34 explicit PersonalDataManagerObserverBridge(
35 id<PersonalDataManagerObserverBridgeDelegate> delegate); 35 id<PersonalDataManagerObserverBridgeDelegate> delegate);
36 ~PersonalDataManagerObserverBridge() override; 36 ~PersonalDataManagerObserverBridge() override;
37 37
38 // PersonalDataManagerObserver implementation. 38 // PersonalDataManagerObserver implementation.
39 void OnPersonalDataChanged() override; 39 void OnPersonalDataChanged() override;
40 void OnInsufficientFormData() override; 40 void OnInsufficientFormData() override;
41 41
42 private: 42 private:
43 id<PersonalDataManagerObserverBridgeDelegate> delegate_; // Weak. 43 __unsafe_unretained id<PersonalDataManagerObserverBridgeDelegate> delegate_;
44 44
45 DISALLOW_COPY_AND_ASSIGN(PersonalDataManagerObserverBridge); 45 DISALLOW_COPY_AND_ASSIGN(PersonalDataManagerObserverBridge);
46 }; 46 };
47 47
48 } // namespace autofill 48 } // namespace autofill
49 49
50 #endif // COMPONENTS_AUTOFILL_IOS_BROWSER_PERSONAL_DATA_MANAGER_OBSERVER_BRIDGE _H_ 50 #endif // COMPONENTS_AUTOFILL_IOS_BROWSER_PERSONAL_DATA_MANAGER_OBSERVER_BRIDGE _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698