Index: chrome/browser/guest_view/web_view/web_view_find_helper.cc |
diff --git a/chrome/browser/guest_view/web_view/web_view_find_helper.cc b/chrome/browser/guest_view/web_view/web_view_find_helper.cc |
index 229565b4e4d1dd42f971e3dfad7936a20b4a5552..b2a5e992cbe40edf910804abaef9164c5878b4fc 100644 |
--- a/chrome/browser/guest_view/web_view/web_view_find_helper.cc |
+++ b/chrome/browser/guest_view/web_view/web_view_find_helper.cc |
@@ -9,6 +9,8 @@ |
#include "chrome/browser/extensions/api/web_view/web_view_internal_api.h" |
#include "chrome/browser/guest_view/web_view/web_view_constants.h" |
+namespace extensions { |
+ |
WebViewFindHelper::WebViewFindHelper(WebViewGuest* webview_guest) |
: webview_guest_(webview_guest), current_find_request_id_(0) { |
} |
@@ -276,3 +278,5 @@ void WebViewFindHelper::FindInfo::SendResponse(bool canceled) { |
find_function_->SetResult(results.DeepCopy()); |
find_function_->SendResponse(true); |
} |
+ |
+} // namespace extensions |