diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 07:59:52 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 07:59:52 +0000 |
commit | 6665571f557a5d19b272ef7c6aeb339e0a693868 (patch) | |
tree | 072600a62ed1054bdc496f1fb6d39682af2fe6fe /remoting/host/policy_hack | |
parent | 470fb434b6021676aea485427a59ad8cc8c87633 (diff) | |
download | chromium_src-6665571f557a5d19b272ef7c6aeb339e0a693868.zip chromium_src-6665571f557a5d19b272ef7c6aeb339e0a693868.tar.gz chromium_src-6665571f557a5d19b272ef7c6aeb339e0a693868.tar.bz2 |
Remove the base::files:: namespace.
Review URL: https://chromiumcodereview.appspot.com/11876031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176836 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/policy_hack')
-rw-r--r-- | remoting/host/policy_hack/policy_watcher_linux.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/policy_hack/policy_watcher_linux.cc b/remoting/host/policy_hack/policy_watcher_linux.cc index f9c561f..0df6120 100644 --- a/remoting/host/policy_hack/policy_watcher_linux.cc +++ b/remoting/host/policy_hack/policy_watcher_linux.cc @@ -64,7 +64,7 @@ class PolicyWatcherLinux : public PolicyWatcher { protected: virtual void StartWatchingInternal() OVERRIDE { DCHECK(OnPolicyWatcherThread()); - watcher_.reset(new base::files::FilePathWatcher()); + watcher_.reset(new base::FilePathWatcher()); if (!config_dir_.empty() && !watcher_->Watch( @@ -228,7 +228,7 @@ class PolicyWatcherLinux : public PolicyWatcher { // decoupling makes it possible to destroy the watcher before the loader's // destructor is called (e.g. during Stop), since |watcher_| internally holds // a reference to the loader and keeps it alive. - scoped_ptr<base::files::FilePathWatcher> watcher_; + scoped_ptr<base::FilePathWatcher> watcher_; // Records last known modification timestamp of |config_dir_|. base::Time last_modification_file_; |