Skip to content

Commit

Permalink
fix merge misses
Browse files Browse the repository at this point in the history
  • Loading branch information
blueboxd committed Feb 15, 2024
1 parent 49afb46 commit c331b90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome/browser/ui/cocoa/share_menu_controller.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/grit/generated_resources.h"
#include "components/omnibox/browser/location_bar_model.h"
#include "net/base/mac/url_conversions.h"
#include "net/base/apple/url_conversions.h"
#include "ui/base/accelerators/platform_accelerator_cocoa.h"
#include "ui/base/l10n/l10n_util_mac.h"
#include "ui/gfx/geometry/rect.h"
Expand Down
3 changes: 2 additions & 1 deletion device/fido/mac/credential_store.mm
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ bool DoDeleteWebAuthnCredentials(const std::string& keychain_access_group,
CFDictionarySetValue(delete_query.get(), kSecClass, kSecClassKey);
CFDictionarySetValue(delete_query.get(), kSecAttrApplicationLabel,
sec_attr_app_label);
OSStatus status = Keychain::GetInstance().ItemDelete(delete_query.get());
OSStatus status =
crypto::AppleKeychainV2::GetInstance().ItemDelete(delete_query.get());
if (status != errSecSuccess) {
OSSTATUS_DLOG(ERROR, status) << "SecItemDelete failed";
result = false;
Expand Down

0 comments on commit c331b90

Please sign in to comment.