blob: f09595a6b2e19ae90c7225660f125790ab65882c [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/ui/bookmarks/bookmark_navigation_controller.h"
#import "ios/chrome/browser/ui/bookmarks/bookmark_ui_constants.h"
#import "ios/chrome/browser/ui/bookmarks/bookmark_utils_ios.h"
#import "ios/chrome/common/ui/colors/UIColor+cr_semantic_colors.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@implementation BookmarkNavigationController
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = UIColor.cr_systemBackgroundColor;
self.navigationBar.accessibilityIdentifier = kBookmarkNavigationBarIdentifier;
}
- (BOOL)disablesAutomaticKeyboardDismissal {
// This allows us to hide the keyboard when controllers are being displayed in
// a modal form sheet on the iPad.
return NO;
}
#pragma mark - UIResponder
- (BOOL)canBecomeFirstResponder {
return YES;
}
@end