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

Side by Side Diff: content/browser/vibration/vibration_message_filter.cc

Issue 165333004: Revert "Allow MessageFilters to restrict listening to specific message classes" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "content/browser/vibration/vibration_message_filter.h" 5 #include "content/browser/vibration/vibration_message_filter.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/numerics/safe_conversions.h" 9 #include "base/numerics/safe_conversions.h"
10 #include "content/common/view_messages.h" 10 #include "content/common/view_messages.h"
11 #include "content/port/browser/vibration_provider.h" 11 #include "content/port/browser/vibration_provider.h"
12 #include "content/public/browser/content_browser_client.h" 12 #include "content/public/browser/content_browser_client.h"
13 #include "content/public/common/content_client.h" 13 #include "content/public/common/content_client.h"
14 #include "third_party/WebKit/public/platform/WebVibration.h" 14 #include "third_party/WebKit/public/platform/WebVibration.h"
15 15
16 namespace content { 16 namespace content {
17 17
18 // Minimum duration of a vibration is 1 millisecond. 18 // Minimum duration of a vibration is 1 millisecond.
19 const int64 kMinimumVibrationDurationMs = 1; 19 const int64 kMinimumVibrationDurationMs = 1;
20 20
21 VibrationMessageFilter::VibrationMessageFilter() 21 VibrationMessageFilter::VibrationMessageFilter() {
22 : BrowserMessageFilter(ViewMsgStart) {
23 provider_.reset(GetContentClient()->browser()->OverrideVibrationProvider()); 22 provider_.reset(GetContentClient()->browser()->OverrideVibrationProvider());
24 if (!provider_.get()) 23 if (!provider_.get())
25 provider_.reset(CreateProvider()); 24 provider_.reset(CreateProvider());
26 } 25 }
27 26
28 VibrationMessageFilter::~VibrationMessageFilter() { 27 VibrationMessageFilter::~VibrationMessageFilter() {
29 } 28 }
30 29
31 bool VibrationMessageFilter::OnMessageReceived( 30 bool VibrationMessageFilter::OnMessageReceived(
32 const IPC::Message& message, 31 const IPC::Message& message,
(...skipping 28 matching lines...) Expand all
61 provider_->CancelVibration(); 60 provider_->CancelVibration();
62 } 61 }
63 62
64 #if !defined(OS_ANDROID) 63 #if !defined(OS_ANDROID)
65 // static 64 // static
66 VibrationProvider* VibrationMessageFilter::CreateProvider() { 65 VibrationProvider* VibrationMessageFilter::CreateProvider() {
67 return NULL; 66 return NULL;
68 } 67 }
69 #endif 68 #endif
70 } // namespace content 69 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/tracing/trace_message_filter.cc ('k') | content/browser/worker_host/worker_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698