Home | History | Annotate | Download | only in engine
      1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_SYNC_ENGINE_IDLE_QUERY_LINUX_H_
      6 #define CHROME_BROWSER_SYNC_ENGINE_IDLE_QUERY_LINUX_H_
      7 #pragma once
      8 
      9 #include "base/memory/scoped_ptr.h"
     10 
     11 namespace browser_sync {
     12 
     13 class IdleData;
     14 
     15 class IdleQueryLinux {
     16  public:
     17   IdleQueryLinux();
     18   ~IdleQueryLinux();
     19   int IdleTime();
     20 
     21  private:
     22   scoped_ptr<IdleData> idle_data_;
     23 };
     24 
     25 }  // namespace browser_sync
     26 #endif  // CHROME_BROWSER_SYNC_ENGINE_IDLE_QUERY_LINUX_H_
     27