OLD | NEW |
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 CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ |
6 #define CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ | 6 #define CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 75 |
76 // Returns the pointer to the DataUseTabModel object owned by |this|. The | 76 // Returns the pointer to the DataUseTabModel object owned by |this|. The |
77 // caller does not owns the returned pointer. | 77 // caller does not owns the returned pointer. |
78 DataUseTabModel* GetDataUseTabModel() const; | 78 DataUseTabModel* GetDataUseTabModel() const; |
79 | 79 |
80 // Called by ExternalDataUseObserverBridge::OnReportDataUseDone when a data | 80 // Called by ExternalDataUseObserverBridge::OnReportDataUseDone when a data |
81 // use report has been submitted. |success| is true if the request was | 81 // use report has been submitted. |success| is true if the request was |
82 // successfully submitted to the external data use observer by Java. | 82 // successfully submitted to the external data use observer by Java. |
83 void OnReportDataUseDone(bool success); | 83 void OnReportDataUseDone(bool success); |
84 | 84 |
| 85 // Called by ExternalDataUseObserverBridge when matching rules are fetched |
| 86 // from the Java object. |
| 87 void OnFetchMatchingRulesDone() const; |
| 88 |
85 // Called by DataUseMatcher. |should_register| is true if |this| should | 89 // Called by DataUseMatcher. |should_register| is true if |this| should |
86 // register as a data use observer. | 90 // register as a data use observer. |
87 void ShouldRegisterAsDataUseObserver(bool should_register); | 91 void ShouldRegisterAsDataUseObserver(bool should_register); |
88 | 92 |
89 // Fetches the matching rules asynchronously. | 93 // Fetches the matching rules asynchronously. |
90 void FetchMatchingRules(); | 94 void FetchMatchingRules(); |
91 | 95 |
92 base::WeakPtr<ExternalDataUseObserver> GetWeakPtr(); | 96 base::WeakPtr<ExternalDataUseObserver> GetWeakPtr(); |
93 | 97 |
94 private: | 98 private: |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 base::WeakPtrFactory<ExternalDataUseObserver> weak_factory_; | 282 base::WeakPtrFactory<ExternalDataUseObserver> weak_factory_; |
279 | 283 |
280 DISALLOW_COPY_AND_ASSIGN(ExternalDataUseObserver); | 284 DISALLOW_COPY_AND_ASSIGN(ExternalDataUseObserver); |
281 }; | 285 }; |
282 | 286 |
283 } // namespace android | 287 } // namespace android |
284 | 288 |
285 } // namespace chrome | 289 } // namespace chrome |
286 | 290 |
287 #endif // CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ | 291 #endif // CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ |
OLD | NEW |