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

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

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 20 matching lines...) Expand all
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 virtual ~ThemeHelperMac();
37 37
38 // Overridden from NotificationObserver: 38 // Overridden from NotificationObserver:
39 virtual void Observe(int type, 39 virtual 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_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698