| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
| 3 // LICENSE file. | 3 // LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "FrameView.h" | 7 #include "FrameView.h" |
| 8 #include "ScrollView.h" | 8 #include "ScrollView.h" |
| 9 #include <wtf/Assertions.h> | 9 #include <wtf/Assertions.h> |
| 10 #undef LOG | 10 #undef LOG |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 void WebKitClientImpl::widgetSetFocus(WebCore::Widget* widget) { | 455 void WebKitClientImpl::widgetSetFocus(WebCore::Widget* widget) { |
| 456 ChromeClientImpl* chrome_client = ToChromeClient(widget); | 456 ChromeClientImpl* chrome_client = ToChromeClient(widget); |
| 457 if (chrome_client) | 457 if (chrome_client) |
| 458 chrome_client->focus(); | 458 chrome_client->focus(); |
| 459 } | 459 } |
| 460 | 460 |
| 461 WebCore::WorkerContextProxy* WebKitClientImpl::createWorkerContextProxy( | 461 WebCore::WorkerContextProxy* WebKitClientImpl::createWorkerContextProxy( |
| 462 WebCore::Worker* worker) { | 462 WebCore::Worker* worker) { |
| 463 return WebWorkerClientImpl::createWorkerContextProxy(worker); | 463 return WebWorkerClientImpl::createWorkerContextProxy(worker); |
| 464 } | 464 } |
| 465 } // namespace webkit_glue | 465 } // namespace webkit_glue |
| OLD | NEW |