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

Side by Side Diff: chrome/browser/android/webapps/single_tab_mode_tab_helper.h

Issue 884213005: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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
« no previous file with comments | « chrome/browser/android/thumbnail/thumbnail_store.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_ANDROID_WEBAPPS_SINGLE_TAB_MODE_TAB_HELPER_H_ 5 #ifndef CHROME_BROWSER_ANDROID_WEBAPPS_SINGLE_TAB_MODE_TAB_HELPER_H_
6 #define CHROME_BROWSER_ANDROID_WEBAPPS_SINGLE_TAB_MODE_TAB_HELPER_H_ 6 #define CHROME_BROWSER_ANDROID_WEBAPPS_SINGLE_TAB_MODE_TAB_HELPER_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 12 matching lines...) Expand all
23 // Registers and unregisters the IDs of renderers in single tab mode, which 23 // Registers and unregisters the IDs of renderers in single tab mode, which
24 // are disallowed from opening new windows via 24 // are disallowed from opening new windows via
25 // ChromeContentBrowserClient::CanCreateWindow(). 25 // ChromeContentBrowserClient::CanCreateWindow().
26 class SingleTabModeTabHelper 26 class SingleTabModeTabHelper
27 : public content::WebContentsObserver, 27 : public content::WebContentsObserver,
28 public content::WebContentsUserData<SingleTabModeTabHelper> { 28 public content::WebContentsUserData<SingleTabModeTabHelper> {
29 public: 29 public:
30 // Checks if the ID pair is blocked from creating new windows. IO-thread only. 30 // Checks if the ID pair is blocked from creating new windows. IO-thread only.
31 static bool IsRegistered(int32 process_id, int32 routing_id); 31 static bool IsRegistered(int32 process_id, int32 routing_id);
32 32
33 virtual ~SingleTabModeTabHelper(); 33 ~SingleTabModeTabHelper() override;
34 34
35 // Handles opening the given URL through the TabModel. 35 // Handles opening the given URL through the TabModel.
36 void HandleOpenUrl(const BlockedWindowParams& params); 36 void HandleOpenUrl(const BlockedWindowParams& params);
37 37
38 // Permanently block this WebContents from creating new windows -- there is no 38 // Permanently block this WebContents from creating new windows -- there is no
39 // current need to allow toggling this flag on or off. 39 // current need to allow toggling this flag on or off.
40 void PermanentlyBlockAllNewWindows(); 40 void PermanentlyBlockAllNewWindows();
41 41
42 // content::WebContentsObserver 42 // content::WebContentsObserver
43 virtual void RenderViewCreated(content::RenderViewHost* render_view_host) 43 void RenderViewCreated(content::RenderViewHost* render_view_host) override;
44 override; 44 void RenderViewDeleted(content::RenderViewHost* render_view_host) override;
45 virtual void RenderViewDeleted(content::RenderViewHost* render_view_host)
46 override;
47 45
48 private: 46 private:
49 explicit SingleTabModeTabHelper(content::WebContents* web_contents); 47 explicit SingleTabModeTabHelper(content::WebContents* web_contents);
50 friend class content::WebContentsUserData<SingleTabModeTabHelper>; 48 friend class content::WebContentsUserData<SingleTabModeTabHelper>;
51 49
52 bool block_all_new_windows_; 50 bool block_all_new_windows_;
53 51
54 DISALLOW_COPY_AND_ASSIGN(SingleTabModeTabHelper); 52 DISALLOW_COPY_AND_ASSIGN(SingleTabModeTabHelper);
55 }; 53 };
56 54
57 #endif // CHROME_BROWSER_ANDROID_WEBAPPS_SINGLE_TAB_MODE_TAB_HELPER_H_ 55 #endif // CHROME_BROWSER_ANDROID_WEBAPPS_SINGLE_TAB_MODE_TAB_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/thumbnail/thumbnail_store.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698