HomeSort by relevance Sort by last modified time
    Searched refs:page_proto (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/components/dom_distiller/core/
viewer.h 35 // Returns the base Viewer HTML page based on the given |page_proto|. This is
42 const DistilledPageProto* page_proto,
51 const DistilledPageProto* page_proto,
viewer.cc 132 const DistilledPageProto* page_proto,
135 base::StringValue value(page_proto->html());
152 const DistilledPageProto* page_proto,
155 DCHECK(page_proto);
156 std::string title = net::EscapeForHTML(page_proto->title());
158 unsafe_output_stream << page_proto->html();
161 std::string original_url = page_proto->url();
  /external/chromium_org/chrome/browser/dom_distiller/
dom_distiller_viewer_source_browsertest.cc 270 scoped_refptr<base::RefCountedData<DistilledPageProto> > page_proto = local
272 page_proto->data.set_url("http://foobar.1.html");
273 page_proto->data.set_html("<div>Page 1 content</div>");
274 update_pages.push_back(page_proto);
275 *(article->add_pages()) = page_proto->data;
297 scoped_refptr<base::RefCountedData<DistilledPageProto> > page_proto = local
299 page_proto->data.set_url("http://foobar.2.html");
300 page_proto->data.set_html("<div>Page 2 content</div>");
301 update_pages.push_back(page_proto);
302 *(article->add_pages()) = page_proto->data
    [all...]
  /external/chromium_org/components/dom_distiller/content/
distiller_page_web_contents_browsertest.cc 475 scoped_ptr<DistilledPageProto> page_proto(new DistilledPageProto());
476 page_proto->set_title(some_title);
477 page_proto->set_html(some_content);
478 std::string html = viewer::GetUnsafePartialArticleHtml(page_proto.get(),
487 scoped_ptr<DistilledPageProto> page_proto(new DistilledPageProto());
488 page_proto->set_title("");
489 page_proto->set_html("");
490 std::string html = viewer::GetUnsafePartialArticleHtml(page_proto.get(),
499 scoped_ptr<DistilledPageProto> page_proto(new DistilledPageProto());
500 page_proto->set_html(some_content)
    [all...]

Completed in 65 milliseconds