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

Side by Side Diff: Source/WebCore/html/shadow/MediaControlRootElementChromium.h

Issue 8496044: Repaint video controls when buffering during pause. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Pipe bufferingProgressed() method. Created 9 years, 1 month 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) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 void exitedFullscreen(); 77 void exitedFullscreen();
78 78
79 void reportedError(); 79 void reportedError();
80 void loadedMetadata(); 80 void loadedMetadata();
81 void changedClosedCaptionsVisibility(); 81 void changedClosedCaptionsVisibility();
82 82
83 void showVolumeSlider(); 83 void showVolumeSlider();
84 void updateTimeDisplay(); 84 void updateTimeDisplay();
85 void updateStatusDisplay(); 85 void updateStatusDisplay();
86 86
87 void bufferingProgressed();
scherkus (not reviewing) 2011/11/23 02:43:22 are there other MediaControls subclasses that we n
DaleCurtis 2011/11/24 00:03:23 Not that I could find using code search.
88
87 virtual bool shouldHideControls(); 89 virtual bool shouldHideControls();
88 90
89 private: 91 private:
90 MediaControlRootElementChromium(HTMLMediaElement*); 92 MediaControlRootElementChromium(HTMLMediaElement*);
91 93
92 virtual void defaultEventHandler(Event*); 94 virtual void defaultEventHandler(Event*);
93 95
94 virtual const AtomicString& shadowPseudoId() const; 96 virtual const AtomicString& shadowPseudoId() const;
95 97
96 bool containsRelatedTarget(Event*); 98 bool containsRelatedTarget(Event*);
(...skipping 11 matching lines...) Expand all
108 110
109 bool m_opaque; 111 bool m_opaque;
110 bool m_isMouseOverControls; 112 bool m_isMouseOverControls;
111 }; 113 };
112 114
113 } 115 }
114 116
115 #endif 117 #endif
116 118
117 #endif 119 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698