OLD | NEW |
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 <limits> | 5 #include <limits> |
6 #include <set> | 6 #include <set> |
7 | 7 |
8 #include "mojo/services/media/common/cpp/local_time.h" | 8 #include "mojo/services/media/common/cpp/local_time.h" |
9 #include "services/media/audio/platform/linux/alsa_output.h" | 9 #include "services/media/audio/platform/linux/alsa_output.h" |
10 | 10 |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 if (code == -EPIPE) { | 390 if (code == -EPIPE) { |
391 HandleAsUnderflow(); | 391 HandleAsUnderflow(); |
392 } else { | 392 } else { |
393 HandleAsError(code); | 393 HandleAsError(code); |
394 } | 394 } |
395 } | 395 } |
396 | 396 |
397 } // namespace audio | 397 } // namespace audio |
398 } // namespace media | 398 } // namespace media |
399 } // namespace mojo | 399 } // namespace mojo |
400 | |
OLD | NEW |