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

Unified Diff: ppapi/cpp/dev/audio_dev.cc

Issue 6281007: Remove dev/audio, dev/audio_config, and dev/audio_trusted... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/cpp/dev/audio_dev.h ('k') | ppapi/ppapi.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/audio_dev.cc
===================================================================
--- ppapi/cpp/dev/audio_dev.cc (revision 71865)
+++ ppapi/cpp/dev/audio_dev.cc (working copy)
@@ -1,41 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ppapi/cpp/dev/audio_dev.h"
-
-#include "ppapi/cpp/module_impl.h"
-
-namespace pp {
-
-namespace {
-
-template <> const char* interface_name<PPB_Audio_Dev>() {
- return PPB_AUDIO_DEV_INTERFACE;
-}
-
-} // namespace
-
-Audio_Dev::Audio_Dev(Instance* instance,
- const AudioConfig_Dev& config,
- PPB_Audio_Callback callback,
- void* user_data)
- : config_(config) {
- if (has_interface<PPB_Audio_Dev>()) {
- PassRefFromConstructor(get_interface<PPB_Audio_Dev>()->Create(
- instance->pp_instance(), config.pp_resource(), callback, user_data));
- }
-}
-
-bool Audio_Dev::StartPlayback() {
- return has_interface<PPB_Audio_Dev>() &&
- get_interface<PPB_Audio_Dev>()->StartPlayback(pp_resource());
-}
-
-bool Audio_Dev::StopPlayback() {
- return has_interface<PPB_Audio_Dev>() &&
- get_interface<PPB_Audio_Dev>()->StopPlayback(pp_resource());
-}
-
-} // namespace pp
-
« no previous file with comments | « ppapi/cpp/dev/audio_dev.h ('k') | ppapi/ppapi.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698