Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: chrome/browser/idle_query_linux.h

Issue 10694060: browser: Move more files into chrome namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/idle_linux.cc ('k') | chrome/browser/idle_query_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_IDLE_QUERY_LINUX_H_ 5 #ifndef CHROME_BROWSER_IDLE_QUERY_LINUX_H_
6 #define CHROME_BROWSER_IDLE_QUERY_LINUX_H_ 6 #define CHROME_BROWSER_IDLE_QUERY_LINUX_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 11
12 namespace browser { 12 namespace chrome {
13 13
14 class IdleData; 14 class IdleData;
15 15
16 class IdleQueryLinux { 16 class IdleQueryLinux {
17 public: 17 public:
18 IdleQueryLinux(); 18 IdleQueryLinux();
19 ~IdleQueryLinux(); 19 ~IdleQueryLinux();
20 20
21 int IdleTime(); 21 int IdleTime();
22 22
23 private: 23 private:
24 scoped_ptr<IdleData> idle_data_; 24 scoped_ptr<IdleData> idle_data_;
25 25
26 DISALLOW_COPY_AND_ASSIGN(IdleQueryLinux); 26 DISALLOW_COPY_AND_ASSIGN(IdleQueryLinux);
27 }; 27 };
28 28
29 } // namespace browser 29 } // namespace chrome
30 30
31 #endif // CHROME_BROWSER_IDLE_QUERY_LINUX_H_ 31 #endif // CHROME_BROWSER_IDLE_QUERY_LINUX_H_
OLDNEW
« no previous file with comments | « chrome/browser/idle_linux.cc ('k') | chrome/browser/idle_query_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698