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

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

Issue 263453007: Implement "Save image as" for canvas (chromium side). (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 void OnMoveCaret(const gfx::Point& point); 740 void OnMoveCaret(const gfx::Point& point);
741 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); 741 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect);
742 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); 742 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands);
743 void OnAllowBindings(int enabled_bindings_flags); 743 void OnAllowBindings(int enabled_bindings_flags);
744 void OnAllowScriptToClose(bool script_can_close); 744 void OnAllowScriptToClose(bool script_can_close);
745 void OnCancelDownload(int32 download_id); 745 void OnCancelDownload(int32 download_id);
746 void OnClearFocusedElement(); 746 void OnClearFocusedElement();
747 void OnClosePage(); 747 void OnClosePage();
748 void OnShowContextMenu(const gfx::Point& location); 748 void OnShowContextMenu(const gfx::Point& location);
749 void OnCopyImageAt(int x, int y); 749 void OnCopyImageAt(int x, int y);
750 void OnSaveImageAt(int x, int y);
750 void OnSetName(const std::string& name); 751 void OnSetName(const std::string& name);
751 void OnDeterminePageLanguage(); 752 void OnDeterminePageLanguage();
752 void OnDisableScrollbarsForSmallWindows( 753 void OnDisableScrollbarsForSmallWindows(
753 const gfx::Size& disable_scrollbars_size_limit); 754 const gfx::Size& disable_scrollbars_size_limit);
754 void OnDragSourceEnded(const gfx::Point& client_point, 755 void OnDragSourceEnded(const gfx::Point& client_point,
755 const gfx::Point& screen_point, 756 const gfx::Point& screen_point,
756 blink::WebDragOperation drag_operation); 757 blink::WebDragOperation drag_operation);
757 void OnDragSourceSystemDragEnded(); 758 void OnDragSourceSystemDragEnded();
758 void OnDragTargetDrop(const gfx::Point& client_pt, 759 void OnDragTargetDrop(const gfx::Point& client_pt,
759 const gfx::Point& screen_pt, 760 const gfx::Point& screen_pt,
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
1296 // use the Observer interface to filter IPC messages and receive frame change 1297 // use the Observer interface to filter IPC messages and receive frame change
1297 // notifications. 1298 // notifications.
1298 // --------------------------------------------------------------------------- 1299 // ---------------------------------------------------------------------------
1299 1300
1300 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1301 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1301 }; 1302 };
1302 1303
1303 } // namespace content 1304 } // namespace content
1304 1305
1305 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1306 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698