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

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: Added stub methods for iOS Created 8 years 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/DEPS ('k') | content/browser/renderer_host/render_view_host_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_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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 bool is_playing); 564 bool is_playing);
565 void OnRequestDesktopNotificationPermission(const GURL& origin, 565 void OnRequestDesktopNotificationPermission(const GURL& origin,
566 int callback_id); 566 int callback_id);
567 void OnShowDesktopNotification( 567 void OnShowDesktopNotification(
568 const ShowDesktopNotificationHostMsgParams& params); 568 const ShowDesktopNotificationHostMsgParams& params);
569 void OnCancelDesktopNotification(int notification_id); 569 void OnCancelDesktopNotification(int notification_id);
570 void OnRunFileChooser(const FileChooserParams& params); 570 void OnRunFileChooser(const FileChooserParams& params);
571 void OnDomOperationResponse(const std::string& json_string, 571 void OnDomOperationResponse(const std::string& json_string,
572 int automation_id); 572 int automation_id);
573 void OnFrameTreeUpdated(const std::string& frame_tree); 573 void OnFrameTreeUpdated(const std::string& frame_tree);
574 void OnGetWindowSnapshot(const int snapshot_id);
574 575
575 #if defined(OS_MACOSX) || defined(OS_ANDROID) 576 #if defined(OS_MACOSX) || defined(OS_ANDROID)
576 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); 577 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params);
577 #endif 578 #endif
578 579
579 #if defined(OS_ANDROID) 580 #if defined(OS_ANDROID)
580 void OnMsgDidChangeBodyBackgroundColor(SkColor color); 581 void OnMsgDidChangeBodyBackgroundColor(SkColor color);
581 void OnStartContentIntent(const GURL& content_url); 582 void OnStartContentIntent(const GURL& content_url);
582 #endif 583 #endif
583 584
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 698 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
698 }; 699 };
699 700
700 #if defined(COMPILER_MSVC) 701 #if defined(COMPILER_MSVC)
701 #pragma warning(pop) 702 #pragma warning(pop)
702 #endif 703 #endif
703 704
704 } // namespace content 705 } // namespace content
705 706
706 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 707 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/DEPS ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698