| Index: content/browser/devtools/protocol/page_handler.h
|
| diff --git a/content/browser/devtools/protocol/page_handler.h b/content/browser/devtools/protocol/page_handler.h
|
| index 4efbdbdf64d13aa34152d22a296cb3c57cb0b5b4..10858cc23293a9dd336b8c1166f4958c6f80cffd 100644
|
| --- a/content/browser/devtools/protocol/page_handler.h
|
| +++ b/content/browser/devtools/protocol/page_handler.h
|
| @@ -7,6 +7,10 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <map>
|
| +#include <memory>
|
| +#include <string>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -117,6 +121,16 @@ class PageHandler : public DevToolsDomainHandler,
|
| int quality,
|
| const gfx::Image& image);
|
|
|
| + void BitmapScreenshotCaptured(
|
| + std::unique_ptr<CaptureScreenshotCallback> callback,
|
| + const std::string& format,
|
| + int quality,
|
| + const SkBitmap& bitmap);
|
| +
|
| + void BitmapScreenshotEncoded(
|
| + std::unique_ptr<CaptureScreenshotCallback> callback,
|
| + const std::string& data);
|
| +
|
| void OnColorPicked(int r, int g, int b, int a);
|
|
|
| // NotificationObserver overrides.
|
|
|