Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: headless/README.md

Issue 1991953002: Implement a runtime headless mode for Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « headless/DEPS ('k') | headless/lib/browser/headless_browser_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Headless Chromium 1 # Headless Chromium
2 2
3 Headless Chromium is a library for running Chromium in a headless/server 3 Headless Chromium is a library for running Chromium in a headless/server
4 environment. Expected use cases include loading web pages, extracting metadata 4 environment. Expected use cases include loading web pages, extracting metadata
5 (e.g., the DOM) and generating bitmaps from page contents -- using all the 5 (e.g., the DOM) and generating bitmaps from page contents -- using all the
6 modern web platform features provided by Chromium and Blink. 6 modern web platform features provided by Chromium and Blink.
7 7
8 See the [architecture design doc](https://docs.google.com/document/d/11zIkKkLBoc ofGgoTeeyibB2TZ_k7nR78v7kNelCatUE) 8 See the [architecture design doc](https://docs.google.com/document/d/11zIkKkLBoc ofGgoTeeyibB2TZ_k7nR78v7kNelCatUE)
9 for more information. 9 for more information.
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 - `HeadlessBrowser` - Represents the global headless browser instance. 63 - `HeadlessBrowser` - Represents the global headless browser instance.
64 - `HeadlessWebContents` - Represents a single "tab" within the browser. 64 - `HeadlessWebContents` - Represents a single "tab" within the browser.
65 - `HeadlessDevToolsClient` - Provides a C++ interface for inspecting and 65 - `HeadlessDevToolsClient` - Provides a C++ interface for inspecting and
66 controlling a tab. The API functions corresponds to [DevTools commands](https: //developer.chrome.com/devtools/docs/debugger-protocol). 66 controlling a tab. The API functions corresponds to [DevTools commands](https: //developer.chrome.com/devtools/docs/debugger-protocol).
67 See the [client API documentation](https://docs.google.com/document/d/1rlqcp8n k-ZQvldNJWdbaMbwfDbJoOXvahPCDoPGOwhQ/edit#) 67 See the [client API documentation](https://docs.google.com/document/d/1rlqcp8n k-ZQvldNJWdbaMbwfDbJoOXvahPCDoPGOwhQ/edit#)
68 for more information. 68 for more information.
69 69
70 ## Documentation 70 ## Documentation
71 71
72 * [Runtime headless mode for Chrome](https://docs.google.com/document/d/1aIJUzQr 3eougZQp90bp4mqGr5gY6hdUice8UPa-Ys90/edit#)
72 * [Virtual Time in Blink](https://docs.google.com/document/d/1y9kdt_zezt7pbey6uz vt1dgklwc1ob_vy4nzo1zbqmo/edit#heading=h.tn3gd1y9ifml) 73 * [Virtual Time in Blink](https://docs.google.com/document/d/1y9kdt_zezt7pbey6uz vt1dgklwc1ob_vy4nzo1zbqmo/edit#heading=h.tn3gd1y9ifml)
73 * [Headless Chrome architecture](https://docs.google.com/document/d/11zIkKkLBoco fGgoTeeyibB2TZ_k7nR78v7kNelCatUE/edit) 74 * [Headless Chrome architecture](https://docs.google.com/document/d/11zIkKkLBoco fGgoTeeyibB2TZ_k7nR78v7kNelCatUE/edit)
74 * [Headless Chrome C++ DevTools API](https://docs.google.com/document/d/1rlqcp8n k-ZQvldNJWdbaMbwfDbJoOXvahPCDoPGOwhQ/edit#heading=h.ng2bxb15li9a) 75 * [Headless Chrome C++ DevTools API](https://docs.google.com/document/d/1rlqcp8n k-ZQvldNJWdbaMbwfDbJoOXvahPCDoPGOwhQ/edit#heading=h.ng2bxb15li9a)
75 * [Session isolation in Headless Chrome](https://docs.google.com/document/d/1XAK vrxtSEoe65vNghSWC5S3kJ--z2Zpt2UWW1Fi8GiM/edit) 76 * [Session isolation in Headless Chrome](https://docs.google.com/document/d/1XAK vrxtSEoe65vNghSWC5S3kJ--z2Zpt2UWW1Fi8GiM/edit)
76 * [Headless Chrome mojo service](https://docs.google.com/document/d/1Fr6_DJH6OK9 rG3-ibMvRPTNnHsAXPk0VzxxiuJDSK3M/edit#heading=h.qh0udvlk963d) 77 * [Headless Chrome mojo service](https://docs.google.com/document/d/1Fr6_DJH6OK9 rG3-ibMvRPTNnHsAXPk0VzxxiuJDSK3M/edit#heading=h.qh0udvlk963d)
77 * [Controlling BeginFrame through DevTools](https://docs.google.com/document/d/1 LVMYDkfjrrX9PNkrD8pJH5-Np_XUTQHIuJ8IEOirQH4/edit?ts=57d96dbd#heading=h.ndv831lc9 uf0) 78 * [Controlling BeginFrame through DevTools](https://docs.google.com/document/d/1 LVMYDkfjrrX9PNkrD8pJH5-Np_XUTQHIuJ8IEOirQH4/edit?ts=57d96dbd#heading=h.ndv831lc9 uf0)
78 * [Viewport bounds and scale for screenshots](https://docs.google.com/document/d /1VTcYz4q_x0f1O5IVrvRX4u1DVd_K34IVUl1VULLTCWw/edit#heading=h.ndv831lc9uf0) 79 * [Viewport bounds and scale for screenshots](https://docs.google.com/document/d /1VTcYz4q_x0f1O5IVrvRX4u1DVd_K34IVUl1VULLTCWw/edit#heading=h.ndv831lc9uf0)
79 * [BlinkOn 6 presentation slides](https://docs.google.com/presentation/d/1gqK9F4 lGAY3TZudAtdcxzMQNEE7PcuQrGu83No3l0lw/edit#slide=id.p) 80 * [BlinkOn 6 presentation slides](https://docs.google.com/presentation/d/1gqK9F4 lGAY3TZudAtdcxzMQNEE7PcuQrGu83No3l0lw/edit#slide=id.p)
OLDNEW
« no previous file with comments | « headless/DEPS ('k') | headless/lib/browser/headless_browser_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698