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

Unified Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 10542089: Power save blocker: switch to new implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_view_host_impl.h
===================================================================
--- content/browser/renderer_host/render_view_host_impl.h (revision 141149)
+++ content/browser/renderer_host/render_view_host_impl.h (working copy)
@@ -28,7 +28,6 @@
#include "webkit/glue/window_open_disposition.h"
class ChildProcessSecurityPolicyImpl;
-class PowerSaveBlocker;
class SessionStorageNamespaceImpl;
class SkBitmap;
class ViewMsg_Navigate;
@@ -47,6 +46,7 @@
namespace content {
class TestRenderViewHost;
+class PowerSaveBlocker;
}
namespace ui {
@@ -649,7 +649,7 @@
// Holds PowerSaveBlockers for the media players in use. Key is the
// player_cookie passed to OnMediaNotification, value is the PowerSaveBlocker.
- typedef std::map<int64, PowerSaveBlocker*> PowerSaveBlockerMap;
+ typedef std::map<int64, content::PowerSaveBlocker*> PowerSaveBlockerMap;
PowerSaveBlockerMap power_save_blockers_;
// A list of observers that filter messages. Weak references.

Powered by Google App Engine
This is Rietveld 408576698