OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_BROWSER_DEVTOOLS_PAGE_DOMAIN_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_DEVTOOLS_PAGE_DOMAIN_HANDLER_H_ |
| 7 |
| 8 #include "content/browser/devtools/devtools_protocol_handler.h" |
| 9 |
| 10 namespace content { |
| 11 namespace devtools { |
| 12 |
| 13 class PageDomainHandler { |
| 14 public: |
| 15 typedef DevToolsProtocolFrontend::Response Response; |
| 16 |
| 17 PageDomainHandler(); |
| 18 virtual ~PageDomainHandler(); |
| 19 |
| 20 void OnClientDetached(); |
| 21 void SetRenderViewHost(RenderViewHostImpl* host); |
| 22 void SetFrontend(scoped_ptr<PageDomainFrontend> frontend); |
| 23 |
| 24 Response Enable(); |
| 25 Response Disable(); |
| 26 |
| 27 Response Reload(const bool* ignoreCache, |
| 28 const std::string* script_to_evaluate_on_load, |
| 29 const std::string* script_preprocessor); |
| 30 |
| 31 Response Navigate(const std::string& url, devtools::PageFrameId* frame_id); |
| 32 |
| 33 Response GetNavigationHistory( |
| 34 int* current_index, |
| 35 std::vector<devtools::PageNavigationEntry>* entries); |
| 36 |
| 37 Response NavigateToHistoryEntry(int entry_id); |
| 38 Response SetTouchEmulationEnabled(bool enabled); |
| 39 Response CaptureScreenshot(std::string* data); |
| 40 Response CanScreencast(bool* result); |
| 41 Response CanEmulate(bool* result); |
| 42 |
| 43 Response StartScreencast(const std::string* format, |
| 44 const int* quality, |
| 45 const int* max_width, |
| 46 const int* max_height); |
| 47 |
| 48 Response StopScreencast(); |
| 49 Response HandleJavaScriptDialog(bool accept, const std::string* prompt_text); |
| 50 |
| 51 Response QueryUsageAndQuota(const std::string& security_origin, |
| 52 devtools::PageQuota* quota, |
| 53 devtools::PageUsage* usage); |
| 54 |
| 55 Response SetColorPickerEnabled(bool enabled); |
| 56 |
| 57 private: |
| 58 DISALLOW_COPY_AND_ASSIGN(PageDomainHandler); |
| 59 }; |
| 60 |
| 61 } // namespace devtools |
| 62 } // namespace content |
| 63 |
| 64 #endif // CONTENT_BROWSER_DEVTOOLS_PAGE_DOMAIN_HANDLER_H_ |
OLD | NEW |