| Index: chrome/browser/chromeos/wm_overview_favicon.cc
|
| diff --git a/chrome/browser/chromeos/wm_overview_fav_icon.cc b/chrome/browser/chromeos/wm_overview_favicon.cc
|
| similarity index 76%
|
| rename from chrome/browser/chromeos/wm_overview_fav_icon.cc
|
| rename to chrome/browser/chromeos/wm_overview_favicon.cc
|
| index 0b98fe18080f5a6642e9e46941fbf46f2f664489..2439cf3afce4967a9fca7593ce27204af19b1dcd 100644
|
| --- a/chrome/browser/chromeos/wm_overview_fav_icon.cc
|
| +++ b/chrome/browser/chromeos/wm_overview_favicon.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/chromeos/wm_overview_fav_icon.h"
|
| +#include "chrome/browser/chromeos/wm_overview_favicon.h"
|
|
|
| #include <vector>
|
|
|
| @@ -24,21 +24,21 @@ using std::vector;
|
|
|
| namespace chromeos {
|
|
|
| -const int WmOverviewFavIcon::kIconSize = 32;
|
| +const int WmOverviewFavicon::kIconSize = 32;
|
|
|
| -WmOverviewFavIcon::WmOverviewFavIcon()
|
| +WmOverviewFavicon::WmOverviewFavicon()
|
| : WidgetGtk(TYPE_WINDOW),
|
| - fav_icon_view_(NULL) {
|
| + favicon_view_(NULL) {
|
| }
|
|
|
| -void WmOverviewFavIcon::Init(WmOverviewSnapshot* snapshot) {
|
| +void WmOverviewFavicon::Init(WmOverviewSnapshot* snapshot) {
|
| MakeTransparent();
|
|
|
| - fav_icon_view_ = new views::ImageView();
|
| + favicon_view_ = new views::ImageView();
|
|
|
| WidgetGtk::Init(NULL, gfx::Rect(0, 0, 0, 0));
|
|
|
| - SetContentsView(fav_icon_view_);
|
| + SetContentsView(favicon_view_);
|
|
|
| // Set the window type
|
| vector<int> params;
|
| @@ -46,13 +46,13 @@ void WmOverviewFavIcon::Init(WmOverviewSnapshot* snapshot) {
|
| GTK_WIDGET(snapshot->GetNativeView())));
|
| WmIpc::instance()->SetWindowType(
|
| GetNativeView(),
|
| - WM_IPC_WINDOW_CHROME_TAB_FAV_ICON,
|
| + WM_IPC_WINDOW_CHROME_TAB_FAVICON,
|
| ¶ms);
|
| }
|
|
|
|
|
| -void WmOverviewFavIcon::SetFavicon(const SkBitmap& image) {
|
| - CHECK(fav_icon_view_) << "Init not called before setting favicon.";
|
| +void WmOverviewFavicon::SetFavicon(const SkBitmap& image) {
|
| + CHECK(favicon_view_) << "Init not called before setting favicon.";
|
| SkBitmap icon;
|
| if (image.width() && image.height()) {
|
| float aspect_ratio = static_cast<float>(image.width()) / image.height();
|
| @@ -70,7 +70,7 @@ void WmOverviewFavIcon::SetFavicon(const SkBitmap& image) {
|
| }
|
| }
|
|
|
| - fav_icon_view_->SetImage(icon);
|
| + favicon_view_->SetImage(icon);
|
|
|
| // Reset the bounds to the size of the image.
|
| SetBounds(gfx::Rect(icon.width(), icon.height()));
|
|
|