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

Unified Diff: chrome/browser/chromeos/cros/synaptics_library.h

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 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
Index: chrome/browser/chromeos/cros/synaptics_library.h
diff --git a/chrome/browser/chromeos/cros/synaptics_library.h b/chrome/browser/chromeos/cros/synaptics_library.h
index fc5a80e7710b79eba8c653a8d41c069cc4e4c726..17a302fe6d5ecc958b95c084cd7940efb17951d0 100644
--- a/chrome/browser/chromeos/cros/synaptics_library.h
+++ b/chrome/browser/chromeos/cros/synaptics_library.h
@@ -25,32 +25,12 @@ class SynapticsLibrary {
// Sets a range parameter. The actual call will be run on the FILE thread.
// Value should be between 1 and 10 inclusive.
virtual void SetRangeParameter(SynapticsParameter param, int value) = 0;
-};
-
-
-// This class handles the interaction with the ChromeOS synaptics library APIs.
-// Users can get an instance of this library class like this:
-// SynapticsLibrary::Get()
-// For a list of SynapticsPrameters, see chromeos_synaptics.h
-// in third_party/cros or /usr/include/cros
-class SynapticsLibraryImpl : public SynapticsLibrary {
- public:
- SynapticsLibraryImpl() {}
- virtual ~SynapticsLibraryImpl() {}
-
- // SynapticsLibrary overrides.
- virtual void SetBoolParameter(SynapticsParameter param, bool value);
- virtual void SetRangeParameter(SynapticsParameter param, int value);
- private:
-
- // This helper methods calls into the libcros library to set the parameter.
- // This call is run on the FILE thread.
- void SetParameter(SynapticsParameter param, int value);
-
- DISALLOW_COPY_AND_ASSIGN(SynapticsLibraryImpl);
+ // Get library implementation.
+ static SynapticsLibrary* GetImpl(bool stub);
};
+
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_CROS_SYNAPTICS_LIBRARY_H_
« no previous file with comments | « chrome/browser/chromeos/cros/speech_synthesis_library.cc ('k') | chrome/browser/chromeos/cros/synaptics_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698