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

Side by Side Diff: chrome/browser/media/desktop_media_list_observer.h

Issue 89683003: Rename DesktopMediaPickerModel[Impl]->[Native]DesktopMediaList (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « chrome/browser/media/desktop_media_list.h ('k') | chrome/browser/media/desktop_media_picker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 CHROME_BROWSER_MEDIA_DESKTOP_MEDIA_LIST_OBSERVER_H_
6 #define CHROME_BROWSER_MEDIA_DESKTOP_MEDIA_LIST_OBSERVER_H_
7
8 // Interface implemented by the desktop media picker dialog to receive
9 // notifications about changes in DesktopMediaList.
10 class DesktopMediaListObserver {
11 public:
12 virtual void OnSourceAdded(int index) = 0;
13 virtual void OnSourceRemoved(int index) = 0;
14 virtual void OnSourceNameChanged(int index) = 0;
15 virtual void OnSourceThumbnailChanged(int index) = 0;
16
17 protected:
18 virtual ~DesktopMediaListObserver() {}
19 };
20
21 #endif // CHROME_BROWSER_MEDIA_DESKTOP_MEDIA_LIST_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/browser/media/desktop_media_list.h ('k') | chrome/browser/media/desktop_media_picker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698