| 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 33e37c7750a9fc6282a9bb46ce9255ba0fa32dfc..92dd257b5df934c45431f09c91c770023a57d89d 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
|
| @@ -1,10 +1,11 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| #include "chrome/browser/ui/views/location_bar/page_action_with_badge_view.h"
|
|
|
| #include "chrome/browser/ui/views/location_bar/page_action_image_view.h"
|
| +#include "chrome/common/extensions/api/icons/icons_handler.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "ui/base/accessibility/accessible_view_state.h"
|
|
|
| @@ -23,8 +24,8 @@ void PageActionWithBadgeView::GetAccessibleState(
|
| }
|
|
|
| gfx::Size PageActionWithBadgeView::GetPreferredSize() {
|
| - return gfx::Size(extensions::Extension::kPageActionIconMaxSize,
|
| - extensions::Extension::kPageActionIconMaxSize);
|
| + return gfx::Size(extensions::IconsInfo::kPageActionIconMaxSize,
|
| + extensions::IconsInfo::kPageActionIconMaxSize);
|
| }
|
|
|
| int PageActionWithBadgeView::GetBuiltInHorizontalPadding() const {
|
|
|