| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 IOS_PUBLIC_PROVIDER_CHROME_BROWSER_CHROME_BROWSER_PROVIDER_H_ | 5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_CHROME_BROWSER_PROVIDER_H_ |
| 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_CHROME_BROWSER_PROVIDER_H_ | 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_CHROME_BROWSER_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <CoreGraphics/CoreGraphics.h> | 8 #include <CoreGraphics/CoreGraphics.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 // Returns an instance of a CardUnmaskPromptView used to unmask Wallet cards. | 92 // Returns an instance of a CardUnmaskPromptView used to unmask Wallet cards. |
| 93 // The view is responsible for its own lifetime. | 93 // The view is responsible for its own lifetime. |
| 94 virtual autofill::CardUnmaskPromptView* CreateCardUnmaskPromptView( | 94 virtual autofill::CardUnmaskPromptView* CreateCardUnmaskPromptView( |
| 95 autofill::CardUnmaskPromptController* controller); | 95 autofill::CardUnmaskPromptController* controller); |
| 96 // Returns risk data used in Wallet requests. | 96 // Returns risk data used in Wallet requests. |
| 97 virtual std::string GetRiskData(); | 97 virtual std::string GetRiskData(); |
| 98 // Returns product version with prefix. | 98 // Returns product version with prefix. |
| 99 virtual std::string GetProductVersionWithPrefix(const std::string& prefix); | 99 virtual std::string GetProductVersionWithPrefix(const std::string& prefix); |
| 100 // Returns a version string to be displayed in "About Chromium" dialog. | 100 // Returns a version string to be displayed in "About Chromium" dialog. |
| 101 virtual std::string GetVersionString(); | 101 virtual std::string GetVersionString(); |
| 102 // Version number, e.g. "6.0.490.1". |
| 103 virtual std::string GetVersionNumber(); |
| 102 }; | 104 }; |
| 103 | 105 |
| 104 } // namespace ios | 106 } // namespace ios |
| 105 | 107 |
| 106 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_CHROME_BROWSER_PROVIDER_H_ | 108 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_CHROME_BROWSER_PROVIDER_H_ |
| OLD | NEW |