OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/extensions/extension_host.h" | 5 #include "chrome/browser/extensions/extension_host.h" |
6 | 6 |
7 #include <list> | 7 #include <list> |
8 | 8 |
9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 void ExtensionHost::DocumentOnLoadCompletedInMainFrame(RenderViewHost* rvh, | 420 void ExtensionHost::DocumentOnLoadCompletedInMainFrame(RenderViewHost* rvh, |
421 int32 page_id) { | 421 int32 page_id) { |
422 if (ViewType::EXTENSION_POPUP == GetRenderViewType()) { | 422 if (ViewType::EXTENSION_POPUP == GetRenderViewType()) { |
423 NotificationService::current()->Notify( | 423 NotificationService::current()->Notify( |
424 NotificationType::EXTENSION_POPUP_VIEW_READY, | 424 NotificationType::EXTENSION_POPUP_VIEW_READY, |
425 Source<Profile>(profile_), | 425 Source<Profile>(profile_), |
426 Details<ExtensionHost>(this)); | 426 Details<ExtensionHost>(this)); |
427 } | 427 } |
428 } | 428 } |
429 | 429 |
430 void ExtensionHost::RunJavaScriptMessage(const std::wstring& message, | 430 void ExtensionHost::RunJavaScriptMessage(const RenderViewHost* rvh, |
| 431 const std::wstring& message, |
431 const std::wstring& default_prompt, | 432 const std::wstring& default_prompt, |
432 const GURL& frame_url, | 433 const GURL& frame_url, |
433 const int flags, | 434 const int flags, |
434 IPC::Message* reply_msg, | 435 IPC::Message* reply_msg, |
435 bool* did_suppress_message) { | 436 bool* did_suppress_message) { |
436 base::TimeDelta time_since_last_message( | 437 base::TimeDelta time_since_last_message( |
437 base::TimeTicks::Now() - last_javascript_message_dismissal_); | 438 base::TimeTicks::Now() - last_javascript_message_dismissal_); |
438 | 439 |
439 *did_suppress_message = suppress_javascript_messages_; | 440 *did_suppress_message = suppress_javascript_messages_; |
440 if (!suppress_javascript_messages_) { | 441 if (!suppress_javascript_messages_) { |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 return window_id; | 828 return window_id; |
828 } | 829 } |
829 | 830 |
830 void ExtensionHost::OnRunFileChooser( | 831 void ExtensionHost::OnRunFileChooser( |
831 const ViewHostMsg_RunFileChooser_Params& params) { | 832 const ViewHostMsg_RunFileChooser_Params& params) { |
832 if (file_select_helper_.get() == NULL) | 833 if (file_select_helper_.get() == NULL) |
833 file_select_helper_.reset(new FileSelectHelper(profile())); | 834 file_select_helper_.reset(new FileSelectHelper(profile())); |
834 file_select_helper_->RunFileChooser(render_view_host_, | 835 file_select_helper_->RunFileChooser(render_view_host_, |
835 associated_tab_contents(), params); | 836 associated_tab_contents(), params); |
836 } | 837 } |
OLD | NEW |