| Index: chrome/browser/ui/views/location_bar/page_action_with_badge_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/page_action_with_badge_view.cc b/chrome/browser/ui/views/location_bar/page_action_with_badge_view.cc
|
| index fa761fa68883a5cdec022db2a16f9ed0b8bac1de..93a281fe19766edf2e4404feb84095adec80af69 100644
|
| --- a/chrome/browser/ui/views/location_bar/page_action_with_badge_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/page_action_with_badge_view.cc
|
| @@ -4,9 +4,9 @@
|
|
|
| #include "chrome/browser/ui/views/location_bar/page_action_with_badge_view.h"
|
|
|
| +#include "chrome/browser/extensions/extension_action.h"
|
| #include "chrome/browser/ui/views/location_bar/location_bar_view.h"
|
| #include "chrome/browser/ui/views/location_bar/page_action_image_view.h"
|
| -#include "chrome/common/extensions/manifest_handlers/icons_handler.h"
|
| #include "ui/accessibility/ax_view_state.h"
|
|
|
| using content::WebContents;
|
| @@ -24,8 +24,8 @@ void PageActionWithBadgeView::GetAccessibleState(
|
| }
|
|
|
| gfx::Size PageActionWithBadgeView::GetPreferredSize() {
|
| - return gfx::Size(extensions::IconsInfo::kPageActionIconMaxSize,
|
| - extensions::IconsInfo::kPageActionIconMaxSize);
|
| + return gfx::Size(ExtensionAction::kPageActionIconMaxSize,
|
| + ExtensionAction::kPageActionIconMaxSize);
|
| }
|
|
|
| void PageActionWithBadgeView::Layout() {
|
|
|