| Index: content/public/browser/web_ui_data_source.h
|
| diff --git a/content/public/browser/web_ui_data_source.h b/content/public/browser/web_ui_data_source.h
|
| index 04ddab5104a6efb816c348cbbcb0041d4ae3c2b7..29559ff5810620162071ba4d2f7b9270a30011cb 100644
|
| --- a/content/public/browser/web_ui_data_source.h
|
| +++ b/content/public/browser/web_ui_data_source.h
|
| @@ -47,6 +47,9 @@ class WebUIDataSource {
|
| // Adds a boolean keyed to its name to our dictionary.
|
| virtual void AddBoolean(const std::string& name, bool value) = 0;
|
|
|
| + // Adds an integer keyed to its name to our dictionary.
|
| + virtual void AddInteger(const std::string& name, int value) = 0;
|
| +
|
| // Sets the path which will return the JSON strings.
|
| virtual void SetJsonPath(const std::string& path) = 0;
|
|
|
|
|