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

Side by Side Diff: chrome/browser/extensions/page_action_controller.h

Issue 10528002: TabContentsWrapper -> TabContents, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
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_EXTENSIONS_PAGE_ACTION_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_PAGE_ACTION_CONTROLLER_H_
6 #define CHROME_BROWSER_EXTENSIONS_PAGE_ACTION_CONTROLLER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_PAGE_ACTION_CONTROLLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 11
12 #include "base/observer_list.h" 12 #include "base/observer_list.h"
13 #include "chrome/browser/extensions/location_bar_controller.h" 13 #include "chrome/browser/extensions/location_bar_controller.h"
14 14
15 class ExtensionService; 15 class ExtensionService;
16 class TabContentsWrapper; 16 class TabContents;
17 typedef TabContents TabContentsWrapper;
17 18
18 namespace extensions { 19 namespace extensions {
19 20
20 // A LocationBarController which populates the location bar with icons based 21 // A LocationBarController which populates the location bar with icons based
21 // on the page_action extension API. 22 // on the page_action extension API.
22 class PageActionController : public LocationBarController { 23 class PageActionController : public LocationBarController {
23 public: 24 public:
24 explicit PageActionController(TabContentsWrapper* tab_contents); 25 explicit PageActionController(TabContentsWrapper* tab_contents);
25 virtual ~PageActionController(); 26 virtual ~PageActionController();
26 27
27 // LocationBarController implementation. 28 // LocationBarController implementation.
28 virtual scoped_ptr<std::vector<ExtensionAction*> > GetCurrentActions() 29 virtual scoped_ptr<std::vector<ExtensionAction*> > GetCurrentActions()
29 OVERRIDE; 30 OVERRIDE;
30 virtual Action OnClicked(const std::string& extension_id, 31 virtual Action OnClicked(const std::string& extension_id,
31 int mouse_button) OVERRIDE; 32 int mouse_button) OVERRIDE;
32 33
33 private: 34 private:
34 // Gets the ExtensionService for |tab_contents_|. 35 // Gets the ExtensionService for |tab_contents_|.
35 ExtensionService* GetExtensionService(); 36 ExtensionService* GetExtensionService();
36 37
37 TabContentsWrapper* tab_contents_; 38 TabContentsWrapper* tab_contents_;
38 39
39 DISALLOW_COPY_AND_ASSIGN(PageActionController); 40 DISALLOW_COPY_AND_ASSIGN(PageActionController);
40 }; 41 };
41 42
42 } // namespace extensions 43 } // namespace extensions
43 44
44 #endif // CHROME_BROWSER_EXTENSIONS_PAGE_ACTION_CONTROLLER_H_ 45 #endif // CHROME_BROWSER_EXTENSIONS_PAGE_ACTION_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module.h ('k') | chrome/browser/extensions/script_badge_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698