| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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 "chrome/browser/task_management/sampling/shared_sampler.h" |
| 6 |
| 7 #include "content/public/browser/browser_thread.h" |
| 8 |
| 9 namespace task_management { |
| 10 |
| 11 SharedSampler::SharedSampler( |
| 12 const scoped_refptr<base::SequencedTaskRunner>& blocking_pool_runner) {} |
| 13 |
| 14 SharedSampler::~SharedSampler() {} |
| 15 |
| 16 int64_t SharedSampler::GetSupportedFlags() const { return 0; } |
| 17 |
| 18 void SharedSampler::RegisterCallbacks( |
| 19 base::ProcessId process_id, |
| 20 const OnIdleWakeupsCallback& on_idle_wakeups) {} |
| 21 |
| 22 void SharedSampler::UnregisterCallbacks(base::ProcessId process_id) {} |
| 23 |
| 24 void SharedSampler::Refresh(base::ProcessId process_id, |
| 25 int64_t refresh_flags) {} |
| 26 |
| 27 } // namespace task_management |
| OLD | NEW |