/external/chromium_org/chrome/common/extensions/api/ |
page_capture.json | 8 "description": "Use the <code>chrome.pageCapture</code> API to save a tab as MHTML.", 13 "description": "Saves the content of the tab with given id as MHTML.", 22 "description": "The id of the tab to save as MHTML." 29 "description": "Called when the MHTML has been generated.", 35 "description": "The MHTML data as a Blob."
|
/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
pageCapture.html | 2 MHTML is a <a href="http://tools.ietf.org/html/rfc2557">standard format</a> 8 Note that for security reasons a MHTML file can only be loaded from the file
|
/external/chromium_org/content/browser/download/ |
mhtml_generation_manager.h | 31 // Instructs the render view to generate a MHTML representation of the current 37 // Instructs the render view to generate a MHTML representation of the current 43 // Notification from the renderer that the MHTML generation finished. 44 // |mhtml_data_size| contains the size in bytes of the generated MHTML data, 55 // The handles to file the MHTML is saved to, for the browser and renderer 76 // Called on the UI thread when the file that should hold the MHTML data has 84 // Called on the file thread to close the file the MHTML was saved to. 89 // |mhtml_data_size| is -1 if the MHTML generation failed.
|
mhtml_generation_browsertest.cc | 46 // Tests that generating a MHTML does create contents. 48 // test is to ensure we were successfull in creating the MHTML data from the 61 // Block until the MHTML is generated.
|
save_package.h | 41 // complete-html or MHTML and providing the information for displaying saving 47 // MHTML means the same thing as complete-html, but it uses the MHTML format to
|
/external/chromium_org/content/renderer/ |
mhtml_generator.cc | 51 blink::WebCString mhtml = local 54 const char* data = mhtml.data(); 56 while (total_bytes_written < mhtml.length()) { 58 std::min(mhtml.length() - total_bytes_written, chunk_size);
|
mhtml_generator.h | 28 // Returns the size of the generated MHTML, -1 if it failed.
|
/external/chromium_org/chrome/browser/extensions/api/page_capture/ |
page_capture_api.h | 52 // Callback called once the MHTML generation is done. 60 // The path to the temporary file containing the MHTML data. 63 // The file containing the MHTML.
|
page_capture_api.cc | 32 const char kFileTooBigError[] = "The MHTML file generated is too big."; 33 const char kMHTMLGenerationFailedError[] = "Failed to generate MHTML.";
|
/external/chromium_org/content/public/browser/ |
save_page_type.h | 17 // User chose to save complete-html page as MHTML.
|
/packages/apps/Browser/src/com/android/browser/preferences/ |
FontSizePreview.java | 33 String mHtml; 53 mHtml = String.format(HTML_FORMAT, visualNames); 64 mWebView.loadDataWithBaseURL(null, mHtml, "text/html", "utf-8", null);
|
InvertedContrastPreview.java | 42 String mHtml; 72 mHtml = builder.toString();
|
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/ |
ArchiveResourceCollection.h | 32 #include "platform/mhtml/ArchiveResource.h" 33 #include "platform/mhtml/MHTMLArchive.h"
|
MHTMLParser.cpp | 32 #include "platform/mhtml/MHTMLParser.h" 35 #include "platform/mhtml/MHTMLArchive.h" 48 // This class is a limited MIME parser used to parse the MIME headers of MHTML files. 206 WTF_LOG_ERROR("Failed to parse MHTML part: no header."); 228 WTF_LOG_ERROR("Failed to parse MHTML, invalid MIME header."); 235 WTF_LOG_ERROR("Failed to parse MHTML subframe."); 249 WTF_LOG_ERROR("Failed to parse MHTML part."); 335 WTF_LOG_ERROR("No bounday found for MHTML part."); 343 WTF_LOG_ERROR("Invalid base64 content for MHTML part."); 356 WTF_LOG_ERROR("Invalid encoding for MHTML part.") [all...] |
MHTMLArchive.cpp | 32 #include "platform/mhtml/MHTMLArchive.h" 37 #include "platform/mhtml/MHTMLParser.h" 100 // For security reasons we only load MHTML pages from local URLs. 107 return 0; // Invalid MHTML file. 109 // Since MHTML is a flat format, we need to make all frames aware of all resources. 196 // We are not specifying insertLFs = true below as it would cut the lines with LFs and MHTML requires CRLFs.
|
MHTMLArchive.h | 34 #include "platform/mhtml/ArchiveResource.h" 58 // Binary encoding results in smaller MHTML files but they might not work in other browsers.
|
ArchiveResourceCollection.cpp | 30 #include "platform/mhtml/ArchiveResourceCollection.h" 59 // In the MHTML case, frames don't have a name so we use the URL instead.
|
ArchiveResource.cpp | 30 #include "platform/mhtml/ArchiveResource.h"
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
SearchParser.java | 133 if (msg.mHtml != null) { 134 msg.mHtml = TextUtilities.highlightTermsInHtml(msg.mHtml, mQuery);
|
/external/chromium_org/content/public/common/ |
frame_navigate_params.h | 36 // This is of interest when a MHTML file is loaded, as the base URL has been 37 // set to original URL of the site the MHTML represents.
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebPageSerializer.cpp | 51 #include "platform/mhtml/MHTMLArchive.h" 214 RefPtr<SharedBuffer> mhtml = serializePageToMHTML(toWebViewImpl(view)->page(), MHTMLArchive::UseDefaultEncoding); local 216 return WebCString(mhtml->data(), mhtml->size()); 221 RefPtr<SharedBuffer> mhtml = serializePageToMHTML(toWebViewImpl(view)->page(), MHTMLArchive::UseBinaryEncoding); local 223 return WebCString(mhtml->data(), mhtml->size());
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebPageSerializer.h | 61 // Serializes the WebView contents to a MHTML representation. 64 // Similar to serializeToMHTML but uses binary encoding for the MHTML parts. 65 // This results in a smaller MHTML file but it might not be supported by other browsers.
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
blink_platform.gypi | 701 'mhtml/ArchiveResource.cpp', 702 'mhtml/ArchiveResourceCollection.cpp', 703 'mhtml/ArchiveResourceCollection.h', 704 'mhtml/MHTMLArchive.cpp', 705 'mhtml/MHTMLArchive.h', 706 'mhtml/MHTMLParser.cpp', 707 'mhtml/MHTMLParser.h', [all...] |
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
ArchiveTest.java | 62 // Generate MHTML and wait for completion
|
/external/chromium_org/content/browser/renderer_host/ |
render_view_host_browsertest.cc | 86 // But should be set to the original page when reading MHTML.
|