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

Side by Side Diff: content/renderer/pepper/plugin_instance_throttler_impl.h

Issue 866173002: Plugin Power Saver: Add UI Overlay to throttled plugin using placeholder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CONTENT_RENDERER_PEPPER_PLUGIN_INSTANCE_THROTTLER_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PLUGIN_INSTANCE_THROTTLER_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PLUGIN_INSTANCE_THROTTLER_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PLUGIN_INSTANCE_THROTTLER_IMPL_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/observer_list.h" 10 #include "base/observer_list.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 // We've chosen a keyframe and the plug-in is throttled. 63 // We've chosen a keyframe and the plug-in is throttled.
64 POWER_SAVER_ENABLED_PLUGIN_THROTTLED, 64 POWER_SAVER_ENABLED_PLUGIN_THROTTLED,
65 // Plugin instance is no longer considered peripheral. This can happen from 65 // Plugin instance is no longer considered peripheral. This can happen from
66 // a user click, whitelisting, or some other reason. We can end up in this 66 // a user click, whitelisting, or some other reason. We can end up in this
67 // state regardless of whether power saver is enabled. 67 // state regardless of whether power saver is enabled.
68 PLUGIN_INSTANCE_MARKED_ESSENTIAL 68 PLUGIN_INSTANCE_MARKED_ESSENTIAL
69 }; 69 };
70 70
71 void EngageThrottle(); 71 void EngageThrottle();
72 72
73 void TimeoutKeyframeExtraction();
74
73 State state_; 75 State state_;
74 76
75 // Number of consecutive interesting frames we've encountered. 77 // Number of consecutive interesting frames we've encountered.
76 int consecutive_interesting_frames_; 78 int consecutive_interesting_frames_;
77 79
80 // If true, take the next frame as the keyframe regardless of interestingness.
81 bool keyframe_extraction_timed_out_;
82
78 ObserverList<Observer> observer_list_; 83 ObserverList<Observer> observer_list_;
79 84
80 base::WeakPtrFactory<PluginInstanceThrottlerImpl> weak_factory_; 85 base::WeakPtrFactory<PluginInstanceThrottlerImpl> weak_factory_;
81 86
82 DISALLOW_COPY_AND_ASSIGN(PluginInstanceThrottlerImpl); 87 DISALLOW_COPY_AND_ASSIGN(PluginInstanceThrottlerImpl);
83 }; 88 };
84 } 89 }
85 90
86 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_INSTANCE_THROTTLER_IMPL_H_ 91 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_INSTANCE_THROTTLER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698