| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #import "chrome/browser/ui/cocoa/website_settings/website_settings_bubble_contro
ller.h" | 5 #import "chrome/browser/ui/cocoa/website_settings/website_settings_bubble_contro
ller.h" |
| 6 | 6 |
| 7 #import <AppKit/AppKit.h> | 7 #import <AppKit/AppKit.h> |
| 8 | 8 |
| 9 #include <cmath> | 9 #include <cmath> |
| 10 | 10 |
| (...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 const CookieInfoList& cookie_info_list) { | 1217 const CookieInfoList& cookie_info_list) { |
| 1218 [bubble_controller_ setCookieInfo:cookie_info_list]; | 1218 [bubble_controller_ setCookieInfo:cookie_info_list]; |
| 1219 } | 1219 } |
| 1220 | 1220 |
| 1221 void WebsiteSettingsUIBridge::SetPermissionInfo( | 1221 void WebsiteSettingsUIBridge::SetPermissionInfo( |
| 1222 const PermissionInfoList& permission_info_list, | 1222 const PermissionInfoList& permission_info_list, |
| 1223 ChosenObjectInfoList chosen_object_info_list) { | 1223 ChosenObjectInfoList chosen_object_info_list) { |
| 1224 [bubble_controller_ setPermissionInfo:permission_info_list | 1224 [bubble_controller_ setPermissionInfo:permission_info_list |
| 1225 andChosenObjects:std::move(chosen_object_info_list)]; | 1225 andChosenObjects:std::move(chosen_object_info_list)]; |
| 1226 } | 1226 } |
| 1227 | |
| 1228 void WebsiteSettingsUIBridge::SetSelectedTab(TabId tab_id) { | |
| 1229 // TODO(lgarron): Remove this from the interface. (crbug.com/571533) | |
| 1230 } | |
| OLD | NEW |