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

Side by Side Diff: Source/core/html/shadow/MediaControls.h

Issue 176883020: Remove MediaControls::showVolumeSlider() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 /* 1 /*
2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 void show(); 54 void show();
55 void hide(); 55 void hide();
56 56
57 void bufferingProgressed(); 57 void bufferingProgressed();
58 virtual void playbackStarted(); 58 virtual void playbackStarted();
59 void playbackProgressed(); 59 void playbackProgressed();
60 virtual void playbackStopped(); 60 virtual void playbackStopped();
61 61
62 void updateCurrentTimeDisplay(); 62 void updateCurrentTimeDisplay();
63 void showVolumeSlider();
64 63
65 void changedMute(); 64 void changedMute();
66 void changedVolume(); 65 void changedVolume();
67 66
68 void changedClosedCaptionsVisibility(); 67 void changedClosedCaptionsVisibility();
69 void refreshClosedCaptionsButtonVisibility(); 68 void refreshClosedCaptionsButtonVisibility();
70 void closedCaptionTracksChanged(); 69 void closedCaptionTracksChanged();
71 70
72 void enteredFullscreen(); 71 void enteredFullscreen();
73 void exitedFullscreen(); 72 void exitedFullscreen();
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 Timer<MediaControls> m_hideFullscreenControlsTimer; 125 Timer<MediaControls> m_hideFullscreenControlsTimer;
127 bool m_isFullscreen; 126 bool m_isFullscreen;
128 bool m_isMouseOverControls; 127 bool m_isMouseOverControls;
129 }; 128 };
130 129
131 DEFINE_NODE_TYPE_CASTS(MediaControls, isMediaControls()); 130 DEFINE_NODE_TYPE_CASTS(MediaControls, isMediaControls());
132 131
133 } 132 }
134 133
135 #endif 134 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698