Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1479)

Unified Diff: chrome/browser/views/tabs/dragged_tab_controller.cc

Issue 1700016: Two changes to extension app icons:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/views/tabs/tab_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/tabs/dragged_tab_controller.cc
===================================================================
--- chrome/browser/views/tabs/dragged_tab_controller.cc (revision 45537)
+++ chrome/browser/views/tabs/dragged_tab_controller.cc (working copy)
@@ -23,7 +23,6 @@
#include "chrome/browser/views/tabs/native_view_photobooth.h"
#include "chrome/browser/views/tabs/tab.h"
#include "chrome/browser/views/tabs/tab_strip.h"
-#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/common/notification_service.h"
#include "gfx/canvas.h"
#include "grit/theme_resources.h"
@@ -42,7 +41,7 @@
#include <gdk/gdkkeysyms.h>
#endif
-static const int kHorizontalMoveThreshold = 16; // pixels
+static const int kHorizontalMoveThreshold = 16; // Pixels.
namespace {
@@ -338,7 +337,7 @@
// bounds, it won't be able to clean up properly since its cleanup routine
// uses GetIndexForDraggedContents, which will be invalid.
view_.reset(NULL);
- SetDraggedContents(NULL); // This removes our observer.
+ SetDraggedContents(NULL); // This removes our observer.
}
void DraggedTabController::CaptureDragInfo(const gfx::Point& mouse_offset) {
@@ -765,11 +764,13 @@
// TabStrip.
int tab_count = attached_tabstrip_->GetTabCount();
int mini_tab_count = attached_tabstrip_->GetMiniTabCount();
+ int nano_tab_count = attached_tabstrip_->GetNanoTabCount();
if (!tab)
++tab_count;
double unselected_width, selected_width = 0;
attached_tabstrip_->GetDesiredTabWidths(tab_count, mini_tab_count,
- &unselected_width, &selected_width);
+ nano_tab_count, &unselected_width,
+ &selected_width);
EnsureDraggedView();
int dragged_tab_width =
mini_ ? Tab::GetMiniWidth() : static_cast<int>(selected_width);
@@ -808,7 +809,7 @@
tab = GetTabMatchingDraggedContents(attached_tabstrip_);
}
- DCHECK(tab); // We should now have a tab.
+ DCHECK(tab); // We should now have a tab.
tab->SetVisible(false);
// Move the corresponding window to the front.
« no previous file with comments | « no previous file | chrome/browser/views/tabs/tab_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698