| Index: content/browser/device_orientation/device_orientation_message_filter.cc
|
| diff --git a/content/browser/device_orientation/device_orientation_message_filter.cc b/content/browser/device_orientation/device_orientation_message_filter.cc
|
| index d00f2b8ccfdc89b20ec870c6d79f8fbe2994e351..783cc57f7aff326d8cdd572bf46bb73fdef22b10 100644
|
| --- a/content/browser/device_orientation/device_orientation_message_filter.cc
|
| +++ b/content/browser/device_orientation/device_orientation_message_filter.cc
|
| @@ -8,9 +8,16 @@
|
| #include "content/common/device_orientation/device_orientation_messages.h"
|
|
|
| namespace content {
|
| +namespace {
|
| +const uint32 kFilteredMessageClasses[] = {
|
| + DeviceOrientationMsgStart,
|
| +};
|
| +} // namespace
|
|
|
| DeviceOrientationMessageFilter::DeviceOrientationMessageFilter()
|
| - : is_started_(false) {
|
| + : BrowserMessageFilter(
|
| + kFilteredMessageClasses, arraysize(kFilteredMessageClasses)),
|
| + is_started_(false) {
|
| }
|
|
|
| DeviceOrientationMessageFilter::~DeviceOrientationMessageFilter() {
|
|
|