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

Side by Side Diff: Source/WebKit/chromium/src/FrameLoaderClientImpl.h

Issue 18371008: Add a WebDocument::watchCssSelectors(selectors) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pinned
Patch Set: Initial Created 7 years, 5 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
« no previous file with comments | « Source/WebKit/chromium/WebKit.gyp ('k') | Source/WebKit/chromium/src/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 virtual void postProgressFinishedNotification(); 104 virtual void postProgressFinishedNotification();
105 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav igationPolicy, const String& suggestedName = String()); 105 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav igationPolicy, const String& suggestedName = String());
106 virtual void didReceiveDocumentData(const char*, int); 106 virtual void didReceiveDocumentData(const char*, int);
107 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; 107 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const;
108 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; 108 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const;
109 virtual void didAccessInitialDocument(); 109 virtual void didAccessInitialDocument();
110 virtual void didDisownOpener(); 110 virtual void didDisownOpener();
111 virtual void didDisplayInsecureContent(); 111 virtual void didDisplayInsecureContent();
112 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore:: KURL& insecureURL); 112 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore:: KURL& insecureURL);
113 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); 113 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage);
114 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons t Vector<String>& removedSelectors);
114 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest &); 115 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest &);
115 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq uest&); 116 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq uest&);
116 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore ::ResourceRequest&); 117 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore ::ResourceRequest&);
117 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour ceResponse&); 118 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour ceResponse&);
118 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource Response&); 119 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource Response&);
119 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso urceResponse&); 120 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso urceResponse&);
120 virtual bool shouldFallBack(const WebCore::ResourceError&); 121 virtual bool shouldFallBack(const WebCore::ResourceError&);
121 virtual bool canShowMIMEType(const WTF::String& MIMEType) const; 122 virtual bool canShowMIMEType(const WTF::String& MIMEType) const;
122 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche me) const; 123 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche me) const;
123 virtual void didFinishLoad(); 124 virtual void didFinishLoad();
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); 173 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver();
173 174
174 // The WebFrame that owns this object and manages its lifetime. Therefore, 175 // The WebFrame that owns this object and manages its lifetime. Therefore,
175 // the web frame object is guaranteed to exist. 176 // the web frame object is guaranteed to exist.
176 WebFrameImpl* m_webFrame; 177 WebFrameImpl* m_webFrame;
177 }; 178 };
178 179
179 } // namespace WebKit 180 } // namespace WebKit
180 181
181 #endif 182 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/WebKit.gyp ('k') | Source/WebKit/chromium/src/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698