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

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

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs Created 6 years, 2 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
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 23 matching lines...) Expand all
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 virtual void RenderViewCreated(content::RenderViewHost* render_view_host)
44 OVERRIDE; 44 override;
45 virtual void RenderViewDeleted(content::RenderViewHost* render_view_host) 45 virtual void RenderViewDeleted(content::RenderViewHost* render_view_host)
46 OVERRIDE; 46 override;
47 47
48 private: 48 private:
49 explicit SingleTabModeTabHelper(content::WebContents* web_contents); 49 explicit SingleTabModeTabHelper(content::WebContents* web_contents);
50 friend class content::WebContentsUserData<SingleTabModeTabHelper>; 50 friend class content::WebContentsUserData<SingleTabModeTabHelper>;
51 51
52 bool block_all_new_windows_; 52 bool block_all_new_windows_;
53 53
54 DISALLOW_COPY_AND_ASSIGN(SingleTabModeTabHelper); 54 DISALLOW_COPY_AND_ASSIGN(SingleTabModeTabHelper);
55 }; 55 };
56 56
57 #endif // CHROME_BROWSER_ANDROID_WEBAPPS_SINGLE_TAB_MODE_TAB_HELPER_H_ 57 #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') | chrome/browser/app_controller_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698