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

Unified Diff: chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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
Index: chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
diff --git a/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc b/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
index 22185f2c65545d68732186b07076b1f6a19872a4..142e4cbc226b9c4cab5852c44e35050752dc9aae 100644
--- a/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
+++ b/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
@@ -263,7 +263,7 @@ class TabStripGtk::TabAnimation : public ui::AnimationDelegate {
// Handles insertion of a Tab at |index|.
class InsertTabAnimation : public TabStripGtk::TabAnimation {
public:
- explicit InsertTabAnimation(TabStripGtk* tabstrip, int index)
+ InsertTabAnimation(TabStripGtk* tabstrip, int index)
: TabAnimation(tabstrip, INSERT),
index_(index) {
int tab_count = tabstrip->GetTabCount();
@@ -526,7 +526,7 @@ class ResizeLayoutAnimation : public TabStripGtk::TabAnimation {
// in the model.
class MiniTabAnimation : public TabStripGtk::TabAnimation {
public:
- explicit MiniTabAnimation(TabStripGtk* tabstrip, int index)
+ MiniTabAnimation(TabStripGtk* tabstrip, int index)
: TabAnimation(tabstrip, MINI),
index_(index) {
int tab_count = tabstrip->GetTabCount();
@@ -586,10 +586,10 @@ class MiniTabAnimation : public TabStripGtk::TabAnimation {
// result.
class MiniMoveAnimation : public TabStripGtk::TabAnimation {
public:
- explicit MiniMoveAnimation(TabStripGtk* tabstrip,
- int from_index,
- int to_index,
- const gfx::Rect& start_bounds)
+ MiniMoveAnimation(TabStripGtk* tabstrip,
+ int from_index,
+ int to_index,
+ const gfx::Rect& start_bounds)
: TabAnimation(tabstrip, MINI_MOVE),
tab_(tabstrip->GetTabAt(to_index)),
start_bounds_(start_bounds),
« no previous file with comments | « chrome/browser/ui/gtk/sad_tab_gtk.h ('k') | chrome/browser/ui/search_engines/template_url_fetcher_ui_callbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698