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

Side by Side Diff: chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h

Issue 854053002: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/chromeos/ui/kiosk_external_update_notification.cc ('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_CHROMEOS_UI_SCREEN_CAPTURE_NOTIFICATION_UI_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_UI_SCREEN_CAPTURE_NOTIFICATION_UI_CHROMEOS_H_
6 #define CHROME_BROWSER_CHROMEOS_UI_SCREEN_CAPTURE_NOTIFICATION_UI_CHROMEOS_H_ 6 #define CHROME_BROWSER_CHROMEOS_UI_SCREEN_CAPTURE_NOTIFICATION_UI_CHROMEOS_H_
7 7
8 #include "base/observer_list.h" 8 #include "base/observer_list.h"
9 #include "chrome/browser/ui/screen_capture_notification_ui.h" 9 #include "chrome/browser/ui/screen_capture_notification_ui.h"
10 10
11 namespace chromeos { 11 namespace chromeos {
12 12
13 // Chromeos implementation for ScreenCaptureNotificationUI. 13 // Chromeos implementation for ScreenCaptureNotificationUI.
14 class ScreenCaptureNotificationUIChromeOS : public ScreenCaptureNotificationUI { 14 class ScreenCaptureNotificationUIChromeOS : public ScreenCaptureNotificationUI {
15 public: 15 public:
16 // |text| is used to specify the text for the notification. 16 // |text| is used to specify the text for the notification.
17 explicit ScreenCaptureNotificationUIChromeOS(const base::string16& text); 17 explicit ScreenCaptureNotificationUIChromeOS(const base::string16& text);
18 virtual ~ScreenCaptureNotificationUIChromeOS(); 18 ~ScreenCaptureNotificationUIChromeOS() override;
19 19
20 // ScreenCaptureNotificationUI overrides. 20 // ScreenCaptureNotificationUI overrides.
21 virtual gfx::NativeViewId OnStarted(const base::Closure& stop_callback) 21 gfx::NativeViewId OnStarted(const base::Closure& stop_callback) override;
22 override;
23 22
24 private: 23 private:
25 const base::string16 text_; 24 const base::string16 text_;
26 25
27 DISALLOW_COPY_AND_ASSIGN(ScreenCaptureNotificationUIChromeOS); 26 DISALLOW_COPY_AND_ASSIGN(ScreenCaptureNotificationUIChromeOS);
28 }; 27 };
29 28
30 } // namespace chromeos 29 } // namespace chromeos
31 #endif // CHROME_BROWSER_CHROMEOS_UI_SCREEN_CAPTURE_NOTIFICATION_UI_CHROMEOS_H_ 30 #endif // CHROME_BROWSER_CHROMEOS_UI_SCREEN_CAPTURE_NOTIFICATION_UI_CHROMEOS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/ui/kiosk_external_update_notification.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698