| Index: content/browser/vibration/vibration_service.cc
|
| diff --git a/content/browser/vibration/vibration_service.cc b/content/browser/vibration/vibration_service.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9867a86abff8cafee18d04674694276b06fe8ef2
|
| --- /dev/null
|
| +++ b/content/browser/vibration/vibration_service.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/browser/vibration/vibration_service.h"
|
| +
|
| +#include "build/build_config.h"
|
| +
|
| +namespace content {
|
| +
|
| +#if !defined(OS_ANDROID)
|
| +// static
|
| +scoped_ptr<VibrationService> VibrationService::Create() {
|
| + return scoped_ptr<VibrationService>();
|
| +}
|
| +#endif
|
| +
|
| +} // namespace content
|
|
|