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

Unified Diff: chrome/browser/extensions/extension_tabs_module.cc

Issue 10294003: Use the asynchronous version of CopyFromBackingStore in CaptureVisibleTabFunction. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_tabs_module.cc
diff --git a/chrome/browser/extensions/extension_tabs_module.cc b/chrome/browser/extensions/extension_tabs_module.cc
index 054c58e8c36eb20be6150066abf8bcb835bbcc2e..6eeac076becdd92bee36c6ca1eb8c6d8b9dc65f9 100644
--- a/chrome/browser/extensions/extension_tabs_module.cc
+++ b/chrome/browser/extensions/extension_tabs_module.cc
@@ -57,6 +57,7 @@
#include "content/public/browser/notification_source.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_view_host_delegate.h"
+#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view.h"
#include "content/public/common/url_constants.h"
@@ -1662,28 +1663,43 @@ bool CaptureVisibleTabFunction::RunImpl() {
return false;
RenderViewHost* render_view_host = web_contents->GetRenderViewHost();
+ content::RenderWidgetHostView* view = render_view_host->GetView();
+ if (!view)
+ return false;
Mihai Parparita -not on Chrome 2012/05/03 16:27:30 This should also populate error_ with an error.
mazda 2012/05/03 16:51:53 Done. Also added code to populate error_ to the re
+ skia::PlatformCanvas* temp_canvas = new skia::PlatformCanvas;
+ render_view_host->AsyncCopyFromBackingStore(
+ gfx::Rect(),
+ view->GetViewBounds().size(),
+ temp_canvas,
+ base::Bind(&CaptureVisibleTabFunction::CopyFromBackingStoreComplete,
+ this,
+ base::Owned(temp_canvas)));
+ return true;
+}
- // If a backing store is cached for the tab we want to capture,
- // and it can be copied into a bitmap, then use it to generate the image.
- // For example, some uncommon X11 visual modes are not supported by
- // CopyFromBackingStore().
- skia::PlatformCanvas temp_canvas;
- if (render_view_host->CopyFromBackingStore(
- gfx::Rect(), gfx::Size(), &temp_canvas)) {
+void CaptureVisibleTabFunction::CopyFromBackingStoreComplete(
+ skia::PlatformCanvas* canvas,
+ bool succeeded) {
+ if (succeeded) {
VLOG(1) << "captureVisibleTab() got image from backing store.";
- SendResultFromBitmap(skia::GetTopDevice(temp_canvas)->accessBitmap(false));
- return true;
+ SendResultFromBitmap(skia::GetTopDevice(*canvas)->accessBitmap(false));
+ return;
+ }
+
+ WebContents* web_contents = NULL;
+ TabContentsWrapper* wrapper = NULL;
+ if (!GetTabToCapture(&web_contents, &wrapper)) {
+ error_ = keys::kInternalVisibleTabCaptureError;
+ return;
Mihai Parparita -not on Chrome 2012/05/03 16:27:30 This also needs a SendResponse(false) call.
mazda 2012/05/03 16:51:53 Done.
}
// Ask the renderer for a snapshot of the tab.
- wrapper->snapshot_tab_helper()->CaptureSnapshot();
registrar_.Add(this,
chrome::NOTIFICATION_TAB_SNAPSHOT_TAKEN,
- content::Source<WebContents>(wrapper->web_contents()));
+ content::Source<WebContents>(web_contents));
AddRef(); // Balanced in CaptureVisibleTabFunction::Observe().
wrapper->snapshot_tab_helper()->CaptureSnapshot();
-
- return true;
+ return;
Mihai Parparita -not on Chrome 2012/05/03 16:27:30 This can be removed.
mazda 2012/05/03 16:51:53 Done.
}
// If a backing store was not available in CaptureVisibleTabFunction::RunImpl,
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698