blob: 27d0232f5c1aff22f2a5847acb179bb7b1f503cc [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/autofill/address_bubbles_icon_controller.h"
#include "chrome/browser/ui/autofill/address_bubbles_controller.h"
namespace autofill {
// static
AddressBubblesIconController* AddressBubblesIconController::Get(
content::WebContents* web_contents) {
if (!web_contents) {
return nullptr;
}
return AddressBubblesController::FromWebContents(web_contents);
}
} // namespace autofill