diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-02 21:14:40 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-02 21:14:40 +0000 |
commit | 6fc9077537613d42871b3ce6a0eb18f3924f6c99 (patch) | |
tree | 83613647b2e19d22c429793b39b99bd71487d9a4 /chrome/browser/idle_query_linux.h | |
parent | 6f012e6911073f6552a67a86e2e4e646a8cbb57d (diff) | |
download | chromium_src-6fc9077537613d42871b3ce6a0eb18f3924f6c99.zip chromium_src-6fc9077537613d42871b3ce6a0eb18f3924f6c99.tar.gz chromium_src-6fc9077537613d42871b3ce6a0eb18f3924f6c99.tar.bz2 |
sync: Move idle_query_linux.{h,cc} out of sync/engine/ directory.
BUG=80582
TEST=None
R=akalin@chromium.org
Review URL: http://codereview.chromium.org/6901122
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83789 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/idle_query_linux.h')
-rw-r--r-- | chrome/browser/idle_query_linux.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/chrome/browser/idle_query_linux.h b/chrome/browser/idle_query_linux.h new file mode 100644 index 0000000..c1d09d9 --- /dev/null +++ b/chrome/browser/idle_query_linux.h @@ -0,0 +1,31 @@ +// Copyright (c) 2011 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. + +#ifndef CHROME_BROWSER_IDLE_QUERY_LINUX_H_ +#define CHROME_BROWSER_IDLE_QUERY_LINUX_H_ +#pragma once + +#include "base/basictypes.h" +#include "base/memory/scoped_ptr.h" + +namespace browser { + +class IdleData; + +class IdleQueryLinux { + public: + IdleQueryLinux(); + ~IdleQueryLinux(); + + int IdleTime(); + + private: + scoped_ptr<IdleData> idle_data_; + + DISALLOW_COPY_AND_ASSIGN(IdleQueryLinux); +}; + +} // namespace browser + +#endif // CHROME_BROWSER_IDLE_QUERY_LINUX_H_ |