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

Unified Diff: chrome/browser/idle_linux.cc

Issue 10694060: browser: Move more files into chrome namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/idle.h ('k') | chrome/browser/idle_query_linux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/idle_linux.cc
diff --git a/chrome/browser/idle_linux.cc b/chrome/browser/idle_linux.cc
index d1be26399f49eb0c58e7f81aa8fbd98f06d00e1e..1a86b6b9609cb18b716f2b4b2ac97d5170ebe350 100644
--- a/chrome/browser/idle_linux.cc
+++ b/chrome/browser/idle_linux.cc
@@ -16,7 +16,7 @@ void CalculateIdleState(unsigned int idle_threshold, IdleCallback notify) {
notify.Run(IDLE_STATE_LOCKED);
return;
}
- browser::IdleQueryLinux idle_query;
+ chrome::IdleQueryLinux idle_query;
unsigned int idle_time = idle_query.IdleTime();
if (idle_time >= idle_threshold)
notify.Run(IDLE_STATE_IDLE);
« no previous file with comments | « chrome/browser/idle.h ('k') | chrome/browser/idle_query_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698