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

Unified Diff: remoting/host/host_config.h

Issue 8536002: Cleanup: Remove unneeded forward declarations from remoting. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | « remoting/host/disconnect_window_mac.h ('k') | remoting/host/host_status_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_config.h
===================================================================
--- remoting/host/host_config.h (revision 109590)
+++ remoting/host/host_config.h (working copy)
@@ -9,8 +9,6 @@
#include "base/memory/ref_counted.h"
-class Task;
-
namespace remoting {
// Following constants define names for configuration parameters.
@@ -34,8 +32,8 @@
// HostConfig interace provides read-only access to host configuration.
class HostConfig : public base::RefCountedThreadSafe<HostConfig> {
public:
- HostConfig() { };
- virtual ~HostConfig() { }
+ HostConfig() {}
+ virtual ~HostConfig() {}
virtual bool GetString(const std::string& path, std::string* out_value) = 0;
virtual bool GetBoolean(const std::string& path, bool* out_value) = 0;
@@ -46,7 +44,7 @@
// MutableHostConfig extends HostConfig for mutability.
class MutableHostConfig : public HostConfig {
public:
- MutableHostConfig() { };
+ MutableHostConfig() {}
// SetString() updates specified config value. Save() must be called to save
// the changes on the disk.
« no previous file with comments | « remoting/host/disconnect_window_mac.h ('k') | remoting/host/host_status_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698