Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <script> | |
| 2 function PageAgent() { | |
| 3 } | |
| 4 | |
| 5 PageAgent.prototype.enable = function() { | |
| 6 }; | |
| 7 | |
| 8 PageAgent.prototype.canScreencast = function() { | |
| 9 return { | |
| 10 result: false | |
| 11 }; | |
| 12 }; | |
| 13 | |
| 14 PageAgent.prototype.canEmulate = function() { | |
| 15 return { | |
| 16 result: false | |
| 17 }; | |
| 18 }; | |
| 19 | |
| 20 this.exports = PageAgent; | |
| 21 </script> | |
| OLD | NEW |