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

Side by Side Diff: chrome/browser/renderer_context_menu/context_menu_content_type_extension_popup.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION _POPUP_H_ 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION _POPUP_H_
6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION _POPUP_H_ 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION _POPUP_H_
7 7
8 #include "components/renderer_context_menu/context_menu_content_type.h" 8 #include "components/renderer_context_menu/context_menu_content_type.h"
9 9
10 class ContextMenuContentTypeExtensionPopup : public ContextMenuContentType { 10 class ContextMenuContentTypeExtensionPopup : public ContextMenuContentType {
11 public: 11 public:
12 virtual ~ContextMenuContentTypeExtensionPopup(); 12 ~ContextMenuContentTypeExtensionPopup() override;
13 13
14 // ContextMenuContentType overrides. 14 // ContextMenuContentType overrides.
15 virtual bool SupportsGroup(int group) override; 15 bool SupportsGroup(int group) override;
16 16
17 protected: 17 protected:
18 ContextMenuContentTypeExtensionPopup( 18 ContextMenuContentTypeExtensionPopup(
19 content::WebContents* web_contents, 19 content::WebContents* web_contents,
20 const content::ContextMenuParams& params); 20 const content::ContextMenuParams& params);
21 21
22 private: 22 private:
23 friend class ContextMenuContentTypeFactory; 23 friend class ContextMenuContentTypeFactory;
24 24
25 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeExtensionPopup); 25 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeExtensionPopup);
26 }; 26 };
27 27
28 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENS ION_POPUP_H_ 28 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENS ION_POPUP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698