Add helper method to determine the current application horizontal size classes.
[chromium-blink-merge.git] / media / base / media.h
blob01a913bc45ff956702377f097a036015951821f0
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Contains code that should be used for initializing, or querying the state
6 // of the media library as a whole.
8 #ifndef MEDIA_BASE_MEDIA_H_
9 #define MEDIA_BASE_MEDIA_H_
11 #include "media/base/media_export.h"
13 namespace base {
14 class FilePath;
17 namespace media {
19 // Initializes media libraries (e.g. ffmpeg) as well as CPU specific media
20 // features.
21 MEDIA_EXPORT void InitializeMediaLibrary();
23 } // namespace media
25 #endif // MEDIA_BASE_MEDIA_H_