| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 | 8 |
| 9 MSVC_PUSH_WARNING_LEVEL(0); | 9 MSVC_PUSH_WARNING_LEVEL(0); |
| 10 #include "Cursor.h" | 10 #include "Cursor.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "v8_proxy.h" | 21 #include "v8_proxy.h" |
| 22 #endif | 22 #endif |
| 23 MSVC_POP_WARNING(); | 23 MSVC_POP_WARNING(); |
| 24 | 24 |
| 25 #include "WebKit.h" | 25 #include "WebKit.h" |
| 26 | 26 |
| 27 #undef LOG | 27 #undef LOG |
| 28 | 28 |
| 29 #include "webkit/glue/chrome_client_impl.h" | 29 #include "webkit/glue/chrome_client_impl.h" |
| 30 | 30 |
| 31 #include "base/logging.h" |
| 31 #include "base/gfx/rect.h" | 32 #include "base/gfx/rect.h" |
| 32 #include "googleurl/src/gurl.h" | 33 #include "googleurl/src/gurl.h" |
| 33 #include "webkit/glue/glue_util.h" | 34 #include "webkit/glue/glue_util.h" |
| 34 #include "webkit/glue/webframe_impl.h" | 35 #include "webkit/glue/webframe_impl.h" |
| 35 #include "webkit/glue/webinputevent.h" | 36 #include "webkit/glue/webinputevent.h" |
| 36 #include "webkit/glue/webkit_glue.h" | 37 #include "webkit/glue/webkit_glue.h" |
| 37 #include "webkit/glue/weburlrequest_impl.h" | 38 #include "webkit/glue/weburlrequest_impl.h" |
| 38 #include "webkit/glue/webview_delegate.h" | 39 #include "webkit/glue/webview_delegate.h" |
| 39 #include "webkit/glue/webview_impl.h" | 40 #include "webkit/glue/webview_impl.h" |
| 40 #include "webkit/glue/webwidget_impl.h" | 41 #include "webkit/glue/webwidget_impl.h" |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 WebViewDelegate* d = webview_->delegate(); | 535 WebViewDelegate* d = webview_->delegate(); |
| 535 if (d) | 536 if (d) |
| 536 d->DisableSuddenTermination(); | 537 d->DisableSuddenTermination(); |
| 537 } | 538 } |
| 538 | 539 |
| 539 void ChromeClientImpl::formStateDidChange(const WebCore::Node*) { | 540 void ChromeClientImpl::formStateDidChange(const WebCore::Node*) { |
| 540 WebViewDelegate* d = webview_->delegate(); | 541 WebViewDelegate* d = webview_->delegate(); |
| 541 if (d) | 542 if (d) |
| 542 d->OnNavStateChanged(webview_); | 543 d->OnNavStateChanged(webview_); |
| 543 } | 544 } |
| OLD | NEW |