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

Side by Side Diff: content/browser/theme_helper_mac.h

Issue 667943003: Standardize usage of virtual/override/final in content/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 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 CONTENT_BROWSER_THEME_HELPER_MAC_H_ 5 #ifndef CONTENT_BROWSER_THEME_HELPER_MAC_H_
6 #define CONTENT_BROWSER_THEME_HELPER_MAC_H_ 6 #define CONTENT_BROWSER_THEME_HELPER_MAC_H_
7 7
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "content/public/browser/notification_observer.h" 9 #include "content/public/browser/notification_observer.h"
10 #include "content/public/browser/notification_registrar.h" 10 #include "content/public/browser/notification_registrar.h"
(...skipping 15 matching lines...) Expand all
26 float initial_button_delay, 26 float initial_button_delay,
27 float autoscroll_button_delay, 27 float autoscroll_button_delay,
28 bool jump_on_track_click, 28 bool jump_on_track_click,
29 blink::ScrollerStyle preferred_scroller_style, 29 blink::ScrollerStyle preferred_scroller_style,
30 bool redraw); 30 bool redraw);
31 31
32 private: 32 private:
33 friend struct DefaultSingletonTraits<ThemeHelperMac>; 33 friend struct DefaultSingletonTraits<ThemeHelperMac>;
34 34
35 ThemeHelperMac(); 35 ThemeHelperMac();
36 virtual ~ThemeHelperMac(); 36 ~ThemeHelperMac() override;
37 37
38 // Overridden from NotificationObserver: 38 // Overridden from NotificationObserver:
39 virtual void Observe(int type, 39 void Observe(int type,
40 const NotificationSource& source, 40 const NotificationSource& source,
41 const NotificationDetails& details) override; 41 const NotificationDetails& details) override;
42 42
43 NotificationRegistrar registrar_; 43 NotificationRegistrar registrar_;
44 44
45 DISALLOW_COPY_AND_ASSIGN(ThemeHelperMac); 45 DISALLOW_COPY_AND_ASSIGN(ThemeHelperMac);
46 }; 46 };
47 47
48 } // namespace content 48 } // namespace content
49 49
50 #endif // CONTENT_BROWSER_THEME_HELPER_MAC_H_ 50 #endif // CONTENT_BROWSER_THEME_HELPER_MAC_H_
OLDNEW
« no previous file with comments | « content/browser/tcmalloc_internals_request_job.h ('k') | content/browser/time_zone_monitor_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698