diff options
Diffstat (limited to 'content/renderer/dom_automation_controller.h')
-rw-r--r-- | content/renderer/dom_automation_controller.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/content/renderer/dom_automation_controller.h b/content/renderer/dom_automation_controller.h index 1516eea..b4fe4c0 100644 --- a/content/renderer/dom_automation_controller.h +++ b/content/renderer/dom_automation_controller.h @@ -115,6 +115,15 @@ class DomAutomationController : public webkit_glue::CppBoundClass { sender_ = sender; } + // Retrieves a histogram and returns a JSON representation of it. + void GetHistogram(const webkit_glue::CppArgumentList& args, + webkit_glue::CppVariant* result); + + // Retrieves a histogram from the browser process and returns a JSON + // representation of it. + void GetBrowserHistogram(const webkit_glue::CppArgumentList& args, + webkit_glue::CppVariant* result); + private: IPC::Sender* sender_; |