Chromium Code Reviews| Index: android_webview/browser/renderer_host/aw_render_view_host_ext.cc |
| diff --git a/android_webview/browser/renderer_host/aw_render_view_host_ext.cc b/android_webview/browser/renderer_host/aw_render_view_host_ext.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1051427d697fea5bb63b10d53eba2ef2bc53e26f |
| --- /dev/null |
| +++ b/android_webview/browser/renderer_host/aw_render_view_host_ext.cc |
| @@ -0,0 +1,65 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "android_webview/browser/renderer_host/aw_render_view_host_ext.h" |
| + |
| +#include "android_webview/common/render_view_messages.h" |
| +#include "base/android/scoped_java_ref.h" |
| +#include "base/callback.h" |
| +#include "content/public/browser/user_metrics.h" |
| +#include "content/public/browser/web_contents.h" |
| + |
| +namespace android_webview { |
| + |
| +AwRenderViewHostExt::AwRenderViewHostExt(content::WebContents* contents) |
| + : content::WebContentsObserver(contents) { |
| +} |
| + |
| +AwRenderViewHostExt::~AwRenderViewHostExt() {} |
| + |
| +void AwRenderViewHostExt::DocumentHasImages(DocumentHasImagesResult result) { |
| + if (!web_contents()->GetRenderViewHost()) { |
| + result.Run(false); |
| + return; |
| + } |
| + static int next_id = 1; |
|
mkosiba (inactive)
2012/08/30 09:43:13
ugh... please make the function explicitly non-thr
joth
2012/08/30 17:26:53
Yeah the hidden static int isn't cutest thing. (I
|
| + int this_id = next_id++; |
| + pending_document_has_images_requests_[this_id] = result; |
| + Send(new AwViewMsg_DocumentHasImages(web_contents()->GetRoutingID(), |
| + this_id)); |
| +} |
| + |
| +void AwRenderViewHostExt::RenderViewGone(base::TerminationStatus status) { |
| + for (std::map<int, DocumentHasImagesResult>::iterator pending_req = |
| + pending_document_has_images_requests_.begin(); |
| + pending_req != pending_document_has_images_requests_.end(); |
| + ++pending_req) { |
| + pending_req->second.Run(false); |
| + } |
| +} |
| + |
| +bool AwRenderViewHostExt::OnMessageReceived(const IPC::Message& message) { |
| + bool handled = true; |
| + IPC_BEGIN_MESSAGE_MAP(AwRenderViewHostExt, message) |
| + IPC_MESSAGE_HANDLER(AwViewHostMsg_DocumentHasImagesResponse, |
| + OnDocumentHasImagesResponse) |
| + IPC_MESSAGE_UNHANDLED(handled = false) |
| + IPC_END_MESSAGE_MAP() |
| + |
| + if (!handled) handled = WebContentsObserver::OnMessageReceived(message); |
|
mkosiba (inactive)
2012/08/30 09:43:13
uber-nit; maybe a newline after ) ?
joth
2012/08/30 17:26:53
You're right.
Actually I can tertiary it..
retu
|
| + |
| + return handled; |
| +} |
| + |
| +void AwRenderViewHostExt::OnDocumentHasImagesResponse(int msg_id, |
| + bool has_images) { |
| + std::map<int, DocumentHasImagesResult>::iterator pending_req = |
| + pending_document_has_images_requests_.find(msg_id); |
| + if (pending_req != pending_document_has_images_requests_.end()) { |
| + pending_req->second.Run(has_images); |
| + pending_document_has_images_requests_.erase(pending_req); |
| + } |
|
mkosiba (inactive)
2012/08/30 09:43:13
I'd say we should DCHECK that a match is always fo
joth
2012/08/30 17:26:53
A good question.
in general chrome code treats any
|
| +} |
| + |
| +} // namespace android_webview |