diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-30 08:51:11 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-30 08:51:11 +0000 |
commit | f8ea339a938c7fada337261fafd48c823d4e91a4 (patch) | |
tree | b162ef882b09706bb2e926e9d6aeb886e38cec70 /chrome/service/remoting/remoting_directory_service.h | |
parent | 4236f8004b5642d9b636d915f7c3cc4acdca8c8a (diff) | |
download | chromium_src-f8ea339a938c7fada337261fafd48c823d4e91a4.zip chromium_src-f8ea339a938c7fada337261fafd48c823d4e91a4.tar.gz chromium_src-f8ea339a938c7fada337261fafd48c823d4e91a4.tar.bz2 |
Remove unused variable.
BUG=None
TEST=None
CID=12579
Review URL: http://codereview.chromium.org/3136023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57842 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/remoting/remoting_directory_service.h')
-rw-r--r-- | chrome/service/remoting/remoting_directory_service.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/chrome/service/remoting/remoting_directory_service.h b/chrome/service/remoting/remoting_directory_service.h index 43807bd..2c9fc0f 100644 --- a/chrome/service/remoting/remoting_directory_service.h +++ b/chrome/service/remoting/remoting_directory_service.h @@ -31,7 +31,7 @@ class RemotingDirectoryService : public URLFetcher::Delegate { virtual void OnRemotingDirectoryError() {} }; - RemotingDirectoryService(Client* client); + explicit RemotingDirectoryService(Client* client); ~RemotingDirectoryService(); // Add this computer as host. Use the token for authentication. @@ -59,9 +59,6 @@ class RemotingDirectoryService : public URLFetcher::Delegate { Client* client_; scoped_ptr<URLFetcher> fetcher_; - // True if a URL request has made and response is pending. - bool request_pending_; - // Host key generated during host registration. scoped_ptr<remoting::HostKeyPair> host_key_pair_; @@ -72,4 +69,4 @@ class RemotingDirectoryService : public URLFetcher::Delegate { DISALLOW_COPY_AND_ASSIGN(RemotingDirectoryService); }; -#endif // CHROME_SERVICE_REMOTING_REMOTING_DIRECTORY_SERVICE_H_ +#endif // CHROME_SERVICE_REMOTING_REMOTING_DIRECTORY_SERVICE_H_ |