| Index: chrome/common/auto_start_linux.h
|
| ===================================================================
|
| --- chrome/common/auto_start_linux.h (revision 75945)
|
| +++ chrome/common/auto_start_linux.h (working copy)
|
| @@ -20,7 +20,13 @@
|
| bool is_terminal_app);
|
| // Removes an autostart file.
|
| static bool Remove(const std::string& autostart_filename);
|
| -
|
| + // Gets the entire contents of an autostart file.
|
| + static bool GetAutostartFileContents(const std::string& autostart_filename,
|
| + std::string* contents);
|
| + // Gets a specific value from an autostart file.
|
| + static bool GetAutostartFileValue(const std::string& autostart_filename,
|
| + const std::string& value_name,
|
| + std::string* value);
|
| private:
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(AutoStart);
|
| };
|
|
|