• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2018 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 "base/message_loop/watchable_io_message_pump_posix.h"
6 
7 namespace base {
8 
9 WatchableIOMessagePumpPosix::FdWatchControllerInterface::
FdWatchControllerInterface(const Location & from_here)10     FdWatchControllerInterface(const Location& from_here)
11     : created_from_location_(from_here) {}
12 
13 WatchableIOMessagePumpPosix::FdWatchControllerInterface::
14     ~FdWatchControllerInterface() = default;
15 
16 }  // namespace base
17