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

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

Issue 23190034: Remove code related to title directionality, we never used it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 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/testing/runner/WebTestProxy.cpp ('k') | Source/web/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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirec tResponse); 77 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirec tResponse);
78 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned l ong identifier, const WebCore::ResourceResponse&); 78 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned l ong identifier, const WebCore::ResourceResponse&);
79 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Web Core::ResourceLoadPriority); 79 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Web Core::ResourceLoadPriority);
80 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned lon g identifier); 80 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned lon g identifier);
81 virtual void dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader* , const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length) ; 81 virtual void dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader* , const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length) ;
82 virtual void dispatchDidHandleOnloadEvents(); 82 virtual void dispatchDidHandleOnloadEvents();
83 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad(); 83 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad();
84 virtual void dispatchDidNavigateWithinPage(); 84 virtual void dispatchDidNavigateWithinPage();
85 virtual void dispatchWillClose(); 85 virtual void dispatchWillClose();
86 virtual void dispatchDidStartProvisionalLoad(); 86 virtual void dispatchDidStartProvisionalLoad();
87 virtual void dispatchDidReceiveTitle(const WebCore::StringWithDirection&); 87 virtual void dispatchDidReceiveTitle(const String&);
88 virtual void dispatchDidChangeIcons(WebCore::IconType); 88 virtual void dispatchDidChangeIcons(WebCore::IconType);
89 virtual void dispatchDidCommitLoad(); 89 virtual void dispatchDidCommitLoad();
90 virtual void dispatchDidFailProvisionalLoad(const WebCore::ResourceError&); 90 virtual void dispatchDidFailProvisionalLoad(const WebCore::ResourceError&);
91 virtual void dispatchDidFailLoad(const WebCore::ResourceError&); 91 virtual void dispatchDidFailLoad(const WebCore::ResourceError&);
92 virtual void dispatchDidFinishDocumentLoad(); 92 virtual void dispatchDidFinishDocumentLoad();
93 virtual void dispatchDidFinishLoad(); 93 virtual void dispatchDidFinishLoad();
94 virtual void dispatchDidLayout(WebCore::LayoutMilestones); 94 virtual void dispatchDidLayout(WebCore::LayoutMilestones);
95 virtual WebCore::NavigationPolicy decidePolicyForNavigation(const WebCore::R esourceRequest&, WebCore::DocumentLoader*, WebCore::NavigationPolicy); 95 virtual WebCore::NavigationPolicy decidePolicyForNavigation(const WebCore::R esourceRequest&, WebCore::DocumentLoader*, WebCore::NavigationPolicy);
96 virtual void dispatchWillRequestResource(WebCore::FetchRequest*); 96 virtual void dispatchWillRequestResource(WebCore::FetchRequest*);
97 virtual void dispatchWillSendSubmitEvent(PassRefPtr<WebCore::FormState>); 97 virtual void dispatchWillSendSubmitEvent(PassRefPtr<WebCore::FormState>);
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); 159 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver();
160 160
161 // The WebFrame that owns this object and manages its lifetime. Therefore, 161 // The WebFrame that owns this object and manages its lifetime. Therefore,
162 // the web frame object is guaranteed to exist. 162 // the web frame object is guaranteed to exist.
163 WebFrameImpl* m_webFrame; 163 WebFrameImpl* m_webFrame;
164 }; 164 };
165 165
166 } // namespace WebKit 166 } // namespace WebKit
167 167
168 #endif 168 #endif
OLDNEW
« no previous file with comments | « Source/testing/runner/WebTestProxy.cpp ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698