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

Side by Side Diff: media/midi/midi_manager_alsa.cc

Issue 1429383002: include what you use: errno.h and string.h in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « media/cast/test/utility/tap_proxy.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 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 #include "media/midi/midi_manager_alsa.h" 5 #include "media/midi/midi_manager_alsa.h"
6 6
7 #include <errno.h>
7 #include <poll.h> 8 #include <poll.h>
8 #include <stdlib.h> 9 #include <stdlib.h>
9 #include <algorithm> 10 #include <algorithm>
10 #include <string> 11 #include <string>
11 12
12 #include "base/bind.h" 13 #include "base/bind.h"
13 #include "base/json/json_string_value_serializer.h" 14 #include "base/json/json_string_value_serializer.h"
14 #include "base/logging.h" 15 #include "base/logging.h"
15 #include "base/message_loop/message_loop.h" 16 #include "base/message_loop/message_loop.h"
16 #include "base/posix/eintr_wrapper.h" 17 #include "base/posix/eintr_wrapper.h"
(...skipping 1323 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 source_map_[AddrToInt(client_id, port_id)] = port_index; 1341 source_map_[AddrToInt(client_id, port_id)] = port_index;
1341 return true; 1342 return true;
1342 } 1343 }
1343 1344
1344 MidiManager* MidiManager::Create() { 1345 MidiManager* MidiManager::Create() {
1345 return new MidiManagerAlsa(); 1346 return new MidiManagerAlsa();
1346 } 1347 }
1347 1348
1348 } // namespace midi 1349 } // namespace midi
1349 } // namespace media 1350 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/test/utility/tap_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698