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

Side by Side Diff: Source/web/FrameLoaderClientImpl.h

Issue 18371008: Add a WebDocument::watchCssSelectors(selectors) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pinned
Patch Set: Sync Created 7 years, 2 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 virtual void postProgressEstimateChangedNotification(); 100 virtual void postProgressEstimateChangedNotification();
101 virtual void postProgressFinishedNotification(); 101 virtual void postProgressFinishedNotification();
102 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav igationPolicy, const String& suggestedName = String()); 102 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav igationPolicy, const String& suggestedName = String());
103 virtual void navigateBackForward(int offset) const; 103 virtual void navigateBackForward(int offset) const;
104 virtual void didAccessInitialDocument(); 104 virtual void didAccessInitialDocument();
105 virtual void didDisownOpener(); 105 virtual void didDisownOpener();
106 virtual void didDisplayInsecureContent(); 106 virtual void didDisplayInsecureContent();
107 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore:: KURL& insecureURL); 107 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore:: KURL& insecureURL);
108 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); 108 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage);
109 virtual void didDispatchPingLoader(const WebCore::KURL&); 109 virtual void didDispatchPingLoader(const WebCore::KURL&);
110 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons t Vector<String>& removedSelectors);
110 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader( 111 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader(
111 const WebCore::ResourceRequest&, const WebCore::SubstituteData&); 112 const WebCore::ResourceRequest&, const WebCore::SubstituteData&);
112 virtual WTF::String userAgent(const WebCore::KURL&); 113 virtual WTF::String userAgent(const WebCore::KURL&);
113 virtual WTF::String doNotTrackValue(); 114 virtual WTF::String doNotTrackValue();
114 virtual void transitionToCommittedForNewPage(); 115 virtual void transitionToCommittedForNewPage();
115 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL&, const W TF::String& name, const WTF::String& referrer, WebCore::HTMLFrameOwnerElement*); 116 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL&, const W TF::String& name, const WTF::String& referrer, WebCore::HTMLFrameOwnerElement*);
116 virtual PassRefPtr<WebCore::Widget> createPlugin( 117 virtual PassRefPtr<WebCore::Widget> createPlugin(
117 const WebCore::IntSize&, WebCore::HTMLPlugInElement*, const WebCore::KUR L&, 118 const WebCore::IntSize&, WebCore::HTMLPlugInElement*, const WebCore::KUR L&,
118 const Vector<WTF::String>&, const Vector<WTF::String>&, 119 const Vector<WTF::String>&, const Vector<WTF::String>&,
119 const WTF::String&, bool loadManually); 120 const WTF::String&, bool loadManually);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); 159 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver();
159 160
160 // The WebFrame that owns this object and manages its lifetime. Therefore, 161 // The WebFrame that owns this object and manages its lifetime. Therefore,
161 // the web frame object is guaranteed to exist. 162 // the web frame object is guaranteed to exist.
162 WebFrameImpl* m_webFrame; 163 WebFrameImpl* m_webFrame;
163 }; 164 };
164 165
165 } // namespace WebKit 166 } // namespace WebKit
166 167
167 #endif 168 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleRareNonInheritedData.cpp ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698