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

Side by Side Diff: chrome/browser/ui/ash/chrome_shell_delegate_views.cc

Issue 253183003: Media indicator for background recording task (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build Created 6 years, 7 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 #include "chrome/browser/ui/ash/chrome_shell_delegate.h" 5 #include "chrome/browser/ui/ash/chrome_shell_delegate.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "ash/accessibility_delegate.h" 9 #include "ash/accessibility_delegate.h"
10 #include "ash/magnifier/magnifier_constants.h" 10 #include "ash/magnifier/magnifier_constants.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateImpl); 54 DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateImpl);
55 }; 55 };
56 56
57 class MediaDelegateImpl : public ash::MediaDelegate { 57 class MediaDelegateImpl : public ash::MediaDelegate {
58 public: 58 public:
59 MediaDelegateImpl() {} 59 MediaDelegateImpl() {}
60 virtual ~MediaDelegateImpl() {} 60 virtual ~MediaDelegateImpl() {}
61 virtual void HandleMediaNextTrack() OVERRIDE {} 61 virtual void HandleMediaNextTrack() OVERRIDE {}
62 virtual void HandleMediaPlayPause() OVERRIDE {} 62 virtual void HandleMediaPlayPause() OVERRIDE {}
63 virtual void HandleMediaPrevTrack() OVERRIDE {} 63 virtual void HandleMediaPrevTrack() OVERRIDE {}
64 virtual ash::MediaCaptureState GetMediaCaptureState(
65 content::BrowserContext* context) OVERRIDE {
66 return ash::MEDIA_CAPTURE_NONE;
67 }
64 68
65 private: 69 private:
66 DISALLOW_COPY_AND_ASSIGN(MediaDelegateImpl); 70 DISALLOW_COPY_AND_ASSIGN(MediaDelegateImpl);
67 }; 71 };
68 72
69 class EmptyAccessibilityDelegate : public ash::AccessibilityDelegate { 73 class EmptyAccessibilityDelegate : public ash::AccessibilityDelegate {
70 public: 74 public:
71 EmptyAccessibilityDelegate() {} 75 EmptyAccessibilityDelegate() {}
72 virtual ~EmptyAccessibilityDelegate() {} 76 virtual ~EmptyAccessibilityDelegate() {}
73 77
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 chrome::NOTIFICATION_PROFILE_ADDED, 279 chrome::NOTIFICATION_PROFILE_ADDED,
276 content::NotificationService::AllSources()); 280 content::NotificationService::AllSources());
277 registrar_.Add(this, 281 registrar_.Add(this,
278 chrome::NOTIFICATION_ASH_SESSION_STARTED, 282 chrome::NOTIFICATION_ASH_SESSION_STARTED,
279 content::NotificationService::AllSources()); 283 content::NotificationService::AllSources());
280 registrar_.Add(this, 284 registrar_.Add(this,
281 chrome::NOTIFICATION_ASH_SESSION_ENDED, 285 chrome::NOTIFICATION_ASH_SESSION_ENDED,
282 content::NotificationService::AllSources()); 286 content::NotificationService::AllSources());
283 #endif 287 #endif
284 } 288 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate_chromeos.cc ('k') | chrome/browser/ui/ash/media_delegate_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698