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

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: Omit split CLs 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
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 virtual void postProgressFinishedNotification(); 105 virtual void postProgressFinishedNotification();
106 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav igationPolicy, const String& suggestedName = String()); 106 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav igationPolicy, const String& suggestedName = String());
107 virtual void didReceiveDocumentData(const char*, int); 107 virtual void didReceiveDocumentData(const char*, int);
108 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; 108 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const;
109 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; 109 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const;
110 virtual void didAccessInitialDocument(); 110 virtual void didAccessInitialDocument();
111 virtual void didDisownOpener(); 111 virtual void didDisownOpener();
112 virtual void didDisplayInsecureContent(); 112 virtual void didDisplayInsecureContent();
113 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore:: KURL& insecureURL); 113 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore:: KURL& insecureURL);
114 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); 114 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage);
115 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons t Vector<String>& removedSelectors);
115 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest &); 116 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest &);
116 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq uest&); 117 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq uest&);
117 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore ::ResourceRequest&); 118 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore ::ResourceRequest&);
118 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour ceResponse&); 119 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour ceResponse&);
119 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource Response&); 120 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource Response&);
120 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso urceResponse&); 121 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso urceResponse&);
121 virtual bool shouldFallBack(const WebCore::ResourceError&); 122 virtual bool shouldFallBack(const WebCore::ResourceError&);
122 virtual bool canShowMIMEType(const WTF::String& MIMEType) const; 123 virtual bool canShowMIMEType(const WTF::String& MIMEType) const;
123 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche me) const; 124 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche me) const;
124 virtual void didFinishLoad(); 125 virtual void didFinishLoad();
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); 174 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver();
174 175
175 // The WebFrame that owns this object and manages its lifetime. Therefore, 176 // The WebFrame that owns this object and manages its lifetime. Therefore,
176 // the web frame object is guaranteed to exist. 177 // the web frame object is guaranteed to exist.
177 WebFrameImpl* m_webFrame; 178 WebFrameImpl* m_webFrame;
178 }; 179 };
179 180
180 } // namespace WebKit 181 } // namespace WebKit
181 182
182 #endif 183 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698