summaryrefslogtreecommitdiff
path: root/chromium/media/base/audio_decoder.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-08-28 15:28:34 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-08-28 13:54:51 +0000
commit2a19c63448c84c1805fb1a585c3651318bb86ca7 (patch)
treeeb17888e8531aa6ee5e85721bd553b832a7e5156 /chromium/media/base/audio_decoder.h
parentb014812705fc80bff0a5c120dfcef88f349816dc (diff)
downloadqtwebengine-chromium-2a19c63448c84c1805fb1a585c3651318bb86ca7.tar.gz
BASELINE: Update Chromium to 69.0.3497.70
Change-Id: I2b7b56e4e7a8b26656930def0d4575dc32b900a0 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/media/base/audio_decoder.h')
-rw-r--r--chromium/media/base/audio_decoder.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chromium/media/base/audio_decoder.h b/chromium/media/base/audio_decoder.h
index d27cd16cfa9..c66ffa76ce8 100644
--- a/chromium/media/base/audio_decoder.h
+++ b/chromium/media/base/audio_decoder.h
@@ -54,6 +54,12 @@ class MEDIA_EXPORT AudioDecoder {
// TODO(xhwang): Rename this method since the name is not only for display.
virtual std::string GetDisplayName() const = 0;
+ // Returns true if the implementation is expected to be implemented by the
+ // platform. The value should be available immediately after construction and
+ // should not change within the lifetime of a decoder instance. The value is
+ // used only for logging.
+ virtual bool IsPlatformDecoder() const;
+
// Initializes an AudioDecoder with |config|, executing the |init_cb| upon
// completion.
//