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

Side by Side Diff: chrome/browser/ui/screen_capture_notification_ui_stub.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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
« no previous file with comments | « chrome/browser/ui/sad_tab_helper.h ('k') | chrome/browser/ui/search/instant_controller.h » ('j') | 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 #include "chrome/browser/ui/screen_capture_notification_ui.h" 5 #include "chrome/browser/ui/screen_capture_notification_ui.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 // Stub implementation of the ScreenCaptureNotificationUI interface. 9 // Stub implementation of the ScreenCaptureNotificationUI interface.
10 class ScreenCaptureNotificationUIStub : public ScreenCaptureNotificationUI { 10 class ScreenCaptureNotificationUIStub : public ScreenCaptureNotificationUI {
11 public: 11 public:
12 ScreenCaptureNotificationUIStub() {} 12 ScreenCaptureNotificationUIStub() {}
13 virtual ~ScreenCaptureNotificationUIStub() {} 13 virtual ~ScreenCaptureNotificationUIStub() {}
14 14
15 virtual gfx::NativeViewId OnStarted(const base::Closure& stop_callback) 15 virtual gfx::NativeViewId OnStarted(const base::Closure& stop_callback)
16 OVERRIDE { 16 override {
17 NOTIMPLEMENTED(); 17 NOTIMPLEMENTED();
18 return 0; 18 return 0;
19 } 19 }
20 }; 20 };
21 21
22 // static 22 // static
23 scoped_ptr<ScreenCaptureNotificationUI> ScreenCaptureNotificationUI::Create( 23 scoped_ptr<ScreenCaptureNotificationUI> ScreenCaptureNotificationUI::Create(
24 const base::string16& title) { 24 const base::string16& title) {
25 return scoped_ptr<ScreenCaptureNotificationUI>( 25 return scoped_ptr<ScreenCaptureNotificationUI>(
26 new ScreenCaptureNotificationUIStub()); 26 new ScreenCaptureNotificationUIStub());
27 } 27 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/sad_tab_helper.h ('k') | chrome/browser/ui/search/instant_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698