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

Unified Diff: content/browser/device_orientation/message_filter.h

Issue 20707002: Implement Device Orientation using shared memory in content/renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: excluded orientation pump tests on win bots Created 7 years, 4 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/device_orientation/message_filter.h
diff --git a/content/browser/device_orientation/message_filter.h b/content/browser/device_orientation/message_filter.h
index f0135f49096dc0c99411fa294382d4ca715e0769..c5dce14012425cfb48138ac3c3c17aa6163feec5 100644
--- a/content/browser/device_orientation/message_filter.h
+++ b/content/browser/device_orientation/message_filter.h
@@ -17,15 +17,15 @@ class ObserverDelegate;
class Provider;
-class DeviceOrientationMessageFilter : public BrowserMessageFilter {
+class DeviceOrientationMessageFilterOld : public BrowserMessageFilter {
public:
// BrowserMessageFilter implementation.
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE = 0;
protected:
- DeviceOrientationMessageFilter(DeviceData::Type device_data_type);
- virtual ~DeviceOrientationMessageFilter();
+ DeviceOrientationMessageFilterOld(DeviceData::Type device_data_type);
+ virtual ~DeviceOrientationMessageFilterOld();
void OnStartUpdating(int render_view_id);
void OnStopUpdating(int render_view_id);

Powered by Google App Engine
This is Rietveld 408576698