Home | History | Annotate | Download | only in audio
      1 // Copyright 2013 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.
      4 
      5 #ifndef CHROMEOS_AUDIO_CHROMEOS_SOUNDS_H_
      6 #define CHROMEOS_AUDIO_CHROMEOS_SOUNDS_H_
      7 
      8 // This file declares sound resources keys for ChromeOS.
      9 namespace chromeos {
     10 
     11 enum {
     12   SOUND_START = 0,
     13   SOUND_STARTUP = SOUND_START,
     14   SOUND_LOCK,
     15   SOUND_OBJECT_DELETE,
     16   SOUND_CAMERA_SNAP,
     17   SOUND_UNLOCK,
     18   SOUND_SHUTDOWN,
     19   SOUND_SPOKEN_FEEDBACK_ENABLED,
     20   SOUND_SPOKEN_FEEDBACK_DISABLED,
     21   SOUND_VOLUME_ADJUST,
     22   SOUND_PASSTHROUGH,
     23   SOUND_EXIT_SCREEN,
     24   SOUND_ENTER_SCREEN,
     25   SOUND_COUNT,
     26 };
     27 
     28 }  // namespace chromeos
     29 
     30 #endif  // CHROMEOS_AUDIO_CHROMEOS_SOUNDS_H_
     31