| Index: ios/chrome/share_extension/share_extension_view.mm
|
| diff --git a/ios/chrome/share_extension/share_extension_view.mm b/ios/chrome/share_extension/share_extension_view.mm
|
| index a0725743a9cd4c3e98f1fac832c3a78096b302a7..3a0e14619c53d4833407cc2e067c6285c75351f6 100644
|
| --- a/ios/chrome/share_extension/share_extension_view.mm
|
| +++ b/ios/chrome/share_extension/share_extension_view.mm
|
| @@ -309,10 +309,13 @@ const CGFloat kButtonFontSize = 17;
|
| [navigationBar setTranslucent:YES];
|
| [navigationBar setTranslatesAutoresizingMaskIntoConstraints:NO];
|
|
|
| + UIButton* systemButton = [UIButton buttonWithType:UIButtonTypeSystem];
|
| + UIColor* systemColor = [systemButton titleColorForState:UIControlStateNormal];
|
| UIBarButtonItem* cancelButton = [[UIBarButtonItem alloc]
|
| initWithBarButtonSystemItem:UIBarButtonSystemItemCancel
|
| target:self
|
| action:@selector(cancelPressed:)];
|
| + [cancelButton setTintColor:systemColor];
|
|
|
| NSString* appName =
|
| [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"];
|
|
|