| Index: chrome/browser/ui/cocoa/clear_browsing_data_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/clear_browsing_data_controller.mm b/chrome/browser/ui/cocoa/clear_browsing_data_controller.mm
|
| index 9251763106961f0fe4ebeb91f2e90b4d189e7937..ae57e265b6e72d7fd5f076b7bf7ab9811f895f46 100644
|
| --- a/chrome/browser/ui/cocoa/clear_browsing_data_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/clear_browsing_data_controller.mm
|
| @@ -83,9 +83,8 @@ static base::LazyInstance<ProfileControllerMap> g_profile_controller_map(
|
| if (it == map->end()) {
|
| // Since we don't currently support multiple profiles, this class
|
| // has not been tested against this case.
|
| - if (map->size() != 0) {
|
| + if (!map->empty())
|
| return nil;
|
| - }
|
|
|
| ClearBrowsingDataController* controller =
|
| [[self alloc] initWithProfile:profile];
|
|
|