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

Side by Side Diff: chrome/browser/ui/browser_tab_strip_model_delegate.h

Issue 74133003: linux-aura: Restore middle-click on new-tab button behaviour. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/browser_tab_strip_model_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_BROWSER_TAB_STRIP_MODEL_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_TAB_STRIP_MODEL_DELEGATE_H_
6 #define CHROME_BROWSER_UI_BROWSER_TAB_STRIP_MODEL_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_BROWSER_TAB_STRIP_MODEL_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" 10 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h"
11 11
12 class GURL;
13
12 namespace chrome { 14 namespace chrome {
13 15
14 class BrowserTabStripModelDelegate : public TabStripModelDelegate { 16 class BrowserTabStripModelDelegate : public TabStripModelDelegate {
15 public: 17 public:
16 explicit BrowserTabStripModelDelegate(Browser* browser); 18 explicit BrowserTabStripModelDelegate(Browser* browser);
17 virtual ~BrowserTabStripModelDelegate(); 19 virtual ~BrowserTabStripModelDelegate();
18 20
19 private: 21 private:
20 // Overridden from TabStripModelDelegate: 22 // Overridden from TabStripModelDelegate:
21 virtual void AddBlankTabAt(int index, bool foreground) OVERRIDE; 23 virtual void AddURLTabAt(const GURL& u, int index, bool foreground) OVERRIDE;
sky 2013/11/15 22:01:32 nit: url (to match url in .cc), and url is more de
sadrul 2013/11/15 22:41:28 Done.
22 virtual Browser* CreateNewStripWithContents( 24 virtual Browser* CreateNewStripWithContents(
23 const std::vector<NewStripContents>& contentses, 25 const std::vector<NewStripContents>& contentses,
24 const gfx::Rect& window_bounds, 26 const gfx::Rect& window_bounds,
25 const DockInfo& dock_info, 27 const DockInfo& dock_info,
26 bool maximize) OVERRIDE; 28 bool maximize) OVERRIDE;
27 virtual void WillAddWebContents(content::WebContents* contents) OVERRIDE; 29 virtual void WillAddWebContents(content::WebContents* contents) OVERRIDE;
28 virtual int GetDragActions() const OVERRIDE; 30 virtual int GetDragActions() const OVERRIDE;
29 virtual bool CanDuplicateContentsAt(int index) OVERRIDE; 31 virtual bool CanDuplicateContentsAt(int index) OVERRIDE;
30 virtual void DuplicateContentsAt(int index) OVERRIDE; 32 virtual void DuplicateContentsAt(int index) OVERRIDE;
31 virtual void CloseFrameAfterDragSession() OVERRIDE; 33 virtual void CloseFrameAfterDragSession() OVERRIDE;
(...skipping 11 matching lines...) Expand all
43 45
44 // The following factory is used to close the frame at a later time. 46 // The following factory is used to close the frame at a later time.
45 base::WeakPtrFactory<BrowserTabStripModelDelegate> weak_factory_; 47 base::WeakPtrFactory<BrowserTabStripModelDelegate> weak_factory_;
46 48
47 DISALLOW_COPY_AND_ASSIGN(BrowserTabStripModelDelegate); 49 DISALLOW_COPY_AND_ASSIGN(BrowserTabStripModelDelegate);
48 }; 50 };
49 51
50 } // namespace chrome 52 } // namespace chrome
51 53
52 #endif // CHROME_BROWSER_UI_BROWSER_TAB_STRIP_MODEL_DELEGATE_H_ 54 #endif // CHROME_BROWSER_UI_BROWSER_TAB_STRIP_MODEL_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/browser_tab_strip_model_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698