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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1624583003: Reload Lo-Fi images inline instead of reloading the whole page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added comment Created 4 years, 10 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 | « content/public/browser/web_contents.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 bool notify_result, 767 bool notify_result,
768 int world_id); 768 int world_id);
769 void OnVisualStateRequest(uint64_t key); 769 void OnVisualStateRequest(uint64_t key);
770 void OnSetEditableSelectionOffsets(int start, int end); 770 void OnSetEditableSelectionOffsets(int start, int end);
771 void OnSetCompositionFromExistingText( 771 void OnSetCompositionFromExistingText(
772 int start, int end, 772 int start, int end,
773 const std::vector<blink::WebCompositionUnderline>& underlines); 773 const std::vector<blink::WebCompositionUnderline>& underlines);
774 void OnExecuteNoValueEditCommand(const std::string& name); 774 void OnExecuteNoValueEditCommand(const std::string& name);
775 void OnExtendSelectionAndDelete(int before, int after); 775 void OnExtendSelectionAndDelete(int before, int after);
776 void OnReload(bool ignore_cache); 776 void OnReload(bool ignore_cache);
777 void OnReloadLoFiImages();
777 void OnTextSurroundingSelectionRequest(size_t max_length); 778 void OnTextSurroundingSelectionRequest(size_t max_length);
778 void OnSetAccessibilityMode(AccessibilityMode new_mode); 779 void OnSetAccessibilityMode(AccessibilityMode new_mode);
779 void OnSnapshotAccessibilityTree(int callback_id); 780 void OnSnapshotAccessibilityTree(int callback_id);
780 void OnUpdateOpener(int opener_routing_id); 781 void OnUpdateOpener(int opener_routing_id);
781 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 782 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
782 void OnSetFrameOwnerProperties( 783 void OnSetFrameOwnerProperties(
783 const blink::WebFrameOwnerProperties& frame_owner_properties); 784 const blink::WebFrameOwnerProperties& frame_owner_properties);
784 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); 785 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id);
785 void OnSetFocusedFrame(); 786 void OnSetFocusedFrame();
786 void OnTextTrackSettingsChanged( 787 void OnTextTrackSettingsChanged(
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 #endif 1209 #endif
1209 1210
1210 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1211 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1211 1212
1212 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1213 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1213 }; 1214 };
1214 1215
1215 } // namespace content 1216 } // namespace content
1216 1217
1217 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1218 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/browser/web_contents.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698