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

Side by Side Diff: android_webview/renderer/print_render_frame_observer.h

Issue 893273003: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « android_webview/renderer/aw_render_view_ext.h ('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 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 ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_ 5 #ifndef ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_
6 #define ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_ 6 #define ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_
7 7
8 #include "content/public/renderer/render_frame_observer.h" 8 #include "content/public/renderer/render_frame_observer.h"
9 9
10 namespace android_webview { 10 namespace android_webview {
11 11
12 class PrintRenderFrameObserver : public content::RenderFrameObserver { 12 class PrintRenderFrameObserver : public content::RenderFrameObserver {
13 public: 13 public:
14 explicit PrintRenderFrameObserver(content::RenderFrame* render_view); 14 explicit PrintRenderFrameObserver(content::RenderFrame* render_view);
15 15
16 private: 16 private:
17 virtual ~PrintRenderFrameObserver(); 17 ~PrintRenderFrameObserver() override;
18 18
19 // RenderFrameObserver implementation. 19 // RenderFrameObserver implementation.
20 virtual bool OnMessageReceived(const IPC::Message& message) override; 20 bool OnMessageReceived(const IPC::Message& message) override;
21 21
22 // IPC handlers 22 // IPC handlers
23 void OnPrintNodeUnderContextMenu(); 23 void OnPrintNodeUnderContextMenu();
24 24
25 DISALLOW_COPY_AND_ASSIGN(PrintRenderFrameObserver); 25 DISALLOW_COPY_AND_ASSIGN(PrintRenderFrameObserver);
26 }; 26 };
27 27
28 } // namespace android_webview 28 } // namespace android_webview
29 29
30 #endif // ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_ 30 #endif // ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_
OLDNEW
« no previous file with comments | « android_webview/renderer/aw_render_view_ext.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698