| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/renderer/render_view.h" | 5 #include "chrome/renderer/render_view.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 #include "webkit/glue/webdevtoolsagent_delegate.h" | 91 #include "webkit/glue/webdevtoolsagent_delegate.h" |
| 92 #include "webkit/glue/webdropdata.h" | 92 #include "webkit/glue/webdropdata.h" |
| 93 #include "webkit/glue/webkit_glue.h" | 93 #include "webkit/glue/webkit_glue.h" |
| 94 #include "webkit/glue/webmediaplayer_impl.h" | 94 #include "webkit/glue/webmediaplayer_impl.h" |
| 95 #include "webkit/glue/webplugin_impl.h" | 95 #include "webkit/glue/webplugin_impl.h" |
| 96 #include "webkit/glue/webview.h" | 96 #include "webkit/glue/webview.h" |
| 97 | 97 |
| 98 #if defined(OS_WIN) | 98 #if defined(OS_WIN) |
| 99 // TODO(port): these files are currently Windows only because they concern: | 99 // TODO(port): these files are currently Windows only because they concern: |
| 100 // * theming | 100 // * theming |
| 101 #include "base/gfx/native_theme.h" | 101 #include "app/gfx/native_theme_win.h" |
| 102 #endif | 102 #endif |
| 103 | 103 |
| 104 using base::Time; | 104 using base::Time; |
| 105 using base::TimeDelta; | 105 using base::TimeDelta; |
| 106 using webkit_glue::AltErrorPageResourceFetcher; | 106 using webkit_glue::AltErrorPageResourceFetcher; |
| 107 using webkit_glue::AutofillForm; | 107 using webkit_glue::AutofillForm; |
| 108 using webkit_glue::ImageResourceFetcher; | 108 using webkit_glue::ImageResourceFetcher; |
| 109 using webkit_glue::PasswordForm; | 109 using webkit_glue::PasswordForm; |
| 110 using webkit_glue::PasswordFormDomManager; | 110 using webkit_glue::PasswordFormDomManager; |
| 111 using webkit_glue::SearchableFormData; | 111 using webkit_glue::SearchableFormData; |
| (...skipping 3512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3624 new PluginMsg_SignalModalDialogEvent(host_window_)); | 3624 new PluginMsg_SignalModalDialogEvent(host_window_)); |
| 3625 | 3625 |
| 3626 message->EnableMessagePumping(); // Runs a nested message loop. | 3626 message->EnableMessagePumping(); // Runs a nested message loop. |
| 3627 bool rv = Send(message); | 3627 bool rv = Send(message); |
| 3628 | 3628 |
| 3629 PluginChannelHost::Broadcast( | 3629 PluginChannelHost::Broadcast( |
| 3630 new PluginMsg_ResetModalDialogEvent(host_window_)); | 3630 new PluginMsg_ResetModalDialogEvent(host_window_)); |
| 3631 | 3631 |
| 3632 return rv; | 3632 return rv; |
| 3633 } | 3633 } |
| OLD | NEW |