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

Side by Side Diff: remoting/host/desktop_resizer_ozone.cc

Issue 1547473005: Switch to standard integer types in remoting/host/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « remoting/host/desktop_resizer_mac.cc ('k') | remoting/host/desktop_resizer_win.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "remoting/host/desktop_resizer.h" 5 #include "remoting/host/desktop_resizer.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/macros.h"
8 9
9 namespace remoting { 10 namespace remoting {
10 11
11 class DesktopResizerOzone : public DesktopResizer { 12 class DesktopResizerOzone : public DesktopResizer {
12 public: 13 public:
13 DesktopResizerOzone(); 14 DesktopResizerOzone();
14 ~DesktopResizerOzone() override; 15 ~DesktopResizerOzone() override;
15 16
16 // DesktopResizer: 17 // DesktopResizer:
17 ScreenResolution GetCurrentResolution() override; 18 ScreenResolution GetCurrentResolution() override;
(...skipping 28 matching lines...) Expand all
46 } 47 }
47 48
48 void DesktopResizerOzone::RestoreResolution(const ScreenResolution& original) { 49 void DesktopResizerOzone::RestoreResolution(const ScreenResolution& original) {
49 } 50 }
50 51
51 scoped_ptr<DesktopResizer> DesktopResizer::Create() { 52 scoped_ptr<DesktopResizer> DesktopResizer::Create() {
52 return make_scoped_ptr(new DesktopResizerOzone); 53 return make_scoped_ptr(new DesktopResizerOzone);
53 } 54 }
54 55
55 } // namespace remoting 56 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/desktop_resizer_mac.cc ('k') | remoting/host/desktop_resizer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698