summaryrefslogtreecommitdiffstats
path: root/components/html_viewer/html_document_application_delegate.h
diff options
context:
space:
mode:
authorsky <sky@chromium.org>2015-08-20 11:54:59 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-20 18:55:34 +0000
commit0a7d81c3b6206e709b63da9cb81742f19ee1c706 (patch)
tree0e156c5c8b67a927fc26fe7806b1766164cd9c86 /components/html_viewer/html_document_application_delegate.h
parentb5f69ad76f082ed98964dd3079f6a0eafb7b3010 (diff)
downloadchromium_src-0a7d81c3b6206e709b63da9cb81742f19ee1c706.zip
chromium_src-0a7d81c3b6206e709b63da9cb81742f19ee1c706.tar.gz
chromium_src-0a7d81c3b6206e709b63da9cb81742f19ee1c706.tar.bz2
Nukes non-OOPIF path
BUG=none TEST=none R=ben@chromium.org Review URL: https://codereview.chromium.org/1283163005 Cr-Commit-Position: refs/heads/master@{#344551}
Diffstat (limited to 'components/html_viewer/html_document_application_delegate.h')
-rw-r--r--components/html_viewer/html_document_application_delegate.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/components/html_viewer/html_document_application_delegate.h b/components/html_viewer/html_document_application_delegate.h
index d416428..91acbf2 100644
--- a/components/html_viewer/html_document_application_delegate.h
+++ b/components/html_viewer/html_document_application_delegate.h
@@ -20,7 +20,6 @@
namespace html_viewer {
class GlobalState;
-class HTMLDocument;
class HTMLDocumentOOPIF;
// ApplicationDelegate created by the content handler for a specific url.
@@ -53,7 +52,6 @@ class HTMLDocumentApplicationDelegate : public mojo::ApplicationDelegate {
bool ConfigureIncomingConnection(
mojo::ApplicationConnection* connection) override;
- void OnHTMLDocumentDeleted(HTMLDocument* document);
void OnHTMLDocumentDeleted2(HTMLDocumentOOPIF* document);
void OnResponseReceived(mojo::URLLoaderPtr loader,
mojo::ApplicationConnection* connection,
@@ -70,10 +68,6 @@ class HTMLDocumentApplicationDelegate : public mojo::ApplicationDelegate {
// As we create HTMLDocuments they are added here. They are removed when the
// HTMLDocument is deleted.
- std::set<HTMLDocument*> documents_;
-
- // As we create HTMLDocuments they are added here. They are removed when the
- // HTMLDocument is deleted.
std::set<HTMLDocumentOOPIF*> documents2_;
HTMLFrameCreationCallback html_frame_creation_callback_;