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

Side by Side Diff: chrome/browser/notifications/notification_audio_controller.h

Issue 17390010: Use a direct include of strings headers, delete some strings forwarding headers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: one less deleted file Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_AUDIO_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_AUDIO_CONTROLLER_H_
6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_AUDIO_CONTROLLER_H_ 6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_AUDIO_CONTROLLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_vector.h" 12 #include "base/memory/scoped_vector.h"
13 #include "base/string_piece.h" 13 #include "base/strings/string_piece.h"
14 #include "media/audio/audio_parameters.h" 14 #include "media/audio/audio_parameters.h"
15 15
16 namespace base { 16 namespace base {
17 class MessageLoopProxy; 17 class MessageLoopProxy;
18 } 18 }
19 19
20 class Profile; 20 class Profile;
21 21
22 // This class controls the sound playing for notifications. Note that this class 22 // This class controls the sound playing for notifications. Note that this class
23 // belongs to the audio thread and self-owned. 23 // belongs to the audio thread and self-owned.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 69
70 scoped_refptr<base::MessageLoopProxy> message_loop_; 70 scoped_refptr<base::MessageLoopProxy> message_loop_;
71 ScopedVector<AudioHandler> audio_handlers_; 71 ScopedVector<AudioHandler> audio_handlers_;
72 72
73 media::AudioParameters::Format output_format_; 73 media::AudioParameters::Format output_format_;
74 74
75 DISALLOW_COPY_AND_ASSIGN(NotificationAudioController); 75 DISALLOW_COPY_AND_ASSIGN(NotificationAudioController);
76 }; 76 };
77 77
78 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_AUDIO_CONTROLLER_H_ 78 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_AUDIO_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698