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

Side by Side Diff: content/renderer/media/renderer_webmidiaccessor_impl.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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_RENDERER_MEDIA_RENDERER_WEBMIDIACCESSOR_IMPL_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_RENDERER_WEBMIDIACCESSOR_IMPL_H_
6 #define CONTENT_RENDERER_MEDIA_RENDERER_WEBMIDIACCESSOR_IMPL_H_ 6 #define CONTENT_RENDERER_MEDIA_RENDERER_WEBMIDIACCESSOR_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include <stddef.h>
9
9 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
10 #include "third_party/WebKit/public/platform/WebMIDIAccessor.h" 12 #include "third_party/WebKit/public/platform/WebMIDIAccessor.h"
11 #include "third_party/WebKit/public/platform/WebMIDIAccessorClient.h" 13 #include "third_party/WebKit/public/platform/WebMIDIAccessorClient.h"
12 14
13 namespace content { 15 namespace content {
14 16
15 class MidiMessageFilter; 17 class MidiMessageFilter;
16 18
17 class RendererWebMIDIAccessorImpl 19 class RendererWebMIDIAccessorImpl
18 : public blink::WebMIDIAccessor { 20 : public blink::WebMIDIAccessor {
19 public: 21 public:
(...skipping 12 matching lines...) Expand all
32 blink::WebMIDIAccessorClient* client_; 34 blink::WebMIDIAccessorClient* client_;
33 35
34 MidiMessageFilter* midi_message_filter(); 36 MidiMessageFilter* midi_message_filter();
35 37
36 DISALLOW_COPY_AND_ASSIGN(RendererWebMIDIAccessorImpl); 38 DISALLOW_COPY_AND_ASSIGN(RendererWebMIDIAccessorImpl);
37 }; 39 };
38 40
39 } // namespace content 41 } // namespace content
40 42
41 #endif // CONTENT_RENDERER_MEDIA_RENDERER_WEBMIDIACCESSOR_IMPL_H_ 43 #endif // CONTENT_RENDERER_MEDIA_RENDERER_WEBMIDIACCESSOR_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/media/renderer_webmediaplayer_delegate.cc ('k') | content/renderer/media/rtc_certificate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698