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

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 11399002: Implemented GetWindowSnapshot on RenderViewImpl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Moved snapshot files to ui/base Created 8 years, 1 month 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 // 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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 bool is_playing); 569 bool is_playing);
570 void OnRequestDesktopNotificationPermission(const GURL& origin, 570 void OnRequestDesktopNotificationPermission(const GURL& origin,
571 int callback_id); 571 int callback_id);
572 void OnShowDesktopNotification( 572 void OnShowDesktopNotification(
573 const ShowDesktopNotificationHostMsgParams& params); 573 const ShowDesktopNotificationHostMsgParams& params);
574 void OnCancelDesktopNotification(int notification_id); 574 void OnCancelDesktopNotification(int notification_id);
575 void OnRunFileChooser(const FileChooserParams& params); 575 void OnRunFileChooser(const FileChooserParams& params);
576 void OnDomOperationResponse(const std::string& json_string, 576 void OnDomOperationResponse(const std::string& json_string,
577 int automation_id); 577 int automation_id);
578 void OnFrameTreeUpdated(const std::string& frame_tree); 578 void OnFrameTreeUpdated(const std::string& frame_tree);
579 void OnGetWindowSnapshot(const int id);
579 580
580 #if defined(OS_MACOSX) || defined(OS_ANDROID) 581 #if defined(OS_MACOSX) || defined(OS_ANDROID)
581 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); 582 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params);
582 #endif 583 #endif
583 584
584 #if defined(OS_ANDROID) 585 #if defined(OS_ANDROID)
585 void OnMsgDidChangeBodyBackgroundColor(SkColor color); 586 void OnMsgDidChangeBodyBackgroundColor(SkColor color);
586 void OnStartContentIntent(const GURL& content_url); 587 void OnStartContentIntent(const GURL& content_url);
587 #endif 588 #endif
588 589
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 703 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
703 }; 704 };
704 705
705 #if defined(COMPILER_MSVC) 706 #if defined(COMPILER_MSVC)
706 #pragma warning(pop) 707 #pragma warning(pop)
707 #endif 708 #endif
708 709
709 } // namespace content 710 } // namespace content
710 711
711 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 712 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698