OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "modules/background_fetch/BackgroundFetchManager.h" |
| 6 |
| 7 #include "modules/serviceworkers/ServiceWorkerRegistration.h" |
| 8 |
| 9 namespace blink { |
| 10 |
| 11 BackgroundFetchManager::BackgroundFetchManager( |
| 12 ServiceWorkerRegistration* registration) |
| 13 : m_registration(registration) { |
| 14 DCHECK(registration); |
| 15 } |
| 16 |
| 17 // TODO(awdf) Implement getTags |
| 18 |
| 19 DEFINE_TRACE(BackgroundFetchManager) { |
| 20 visitor->trace(m_registration); |
| 21 } |
| 22 |
| 23 } // namespace blink |
OLD | NEW |