| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 BlameContext*) override; | 225 BlameContext*) override; |
| 226 | 226 |
| 227 double LastFrameTimeMonotonic() const override; | 227 double LastFrameTimeMonotonic() const override; |
| 228 | 228 |
| 229 void NotifyPopupOpeningObservers() const; | 229 void NotifyPopupOpeningObservers() const; |
| 230 | 230 |
| 231 void InstallSupplements(LocalFrame&) override; | 231 void InstallSupplements(LocalFrame&) override; |
| 232 | 232 |
| 233 WebLayerTreeView* GetWebLayerTreeView(LocalFrame*) override; | 233 WebLayerTreeView* GetWebLayerTreeView(LocalFrame*) override; |
| 234 | 234 |
| 235 void RequestKeyLock(LocalFrame*, PassRefPtr<KeyboardLocker>) override; |
| 236 void CancelKeyLock(LocalFrame*) override; |
| 237 |
| 235 private: | 238 private: |
| 236 explicit ChromeClientImpl(WebViewImpl*); | 239 explicit ChromeClientImpl(WebViewImpl*); |
| 237 | 240 |
| 238 bool IsChromeClientImpl() const override { return true; } | 241 bool IsChromeClientImpl() const override { return true; } |
| 239 void RegisterPopupOpeningObserver(PopupOpeningObserver*) override; | 242 void RegisterPopupOpeningObserver(PopupOpeningObserver*) override; |
| 240 void UnregisterPopupOpeningObserver(PopupOpeningObserver*) override; | 243 void UnregisterPopupOpeningObserver(PopupOpeningObserver*) override; |
| 241 | 244 |
| 242 void SetCursor(const WebCursorInfo&, LocalFrame*); | 245 void SetCursor(const WebCursorInfo&, LocalFrame*); |
| 243 | 246 |
| 244 WebViewImpl* web_view_; // Weak pointer. | 247 WebViewImpl* web_view_; // Weak pointer. |
| 245 WindowFeatures window_features_; | 248 WindowFeatures window_features_; |
| 246 Vector<PopupOpeningObserver*> popup_opening_observers_; | 249 Vector<PopupOpeningObserver*> popup_opening_observers_; |
| 247 Cursor last_set_mouse_cursor_for_testing_; | 250 Cursor last_set_mouse_cursor_for_testing_; |
| 248 bool cursor_overridden_; | 251 bool cursor_overridden_; |
| 249 bool did_request_non_empty_tool_tip_; | 252 bool did_request_non_empty_tool_tip_; |
| 250 }; | 253 }; |
| 251 | 254 |
| 252 DEFINE_TYPE_CASTS(ChromeClientImpl, | 255 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 253 ChromeClient, | 256 ChromeClient, |
| 254 client, | 257 client, |
| 255 client->IsChromeClientImpl(), | 258 client->IsChromeClientImpl(), |
| 256 client.IsChromeClientImpl()); | 259 client.IsChromeClientImpl()); |
| 257 | 260 |
| 258 } // namespace blink | 261 } // namespace blink |
| 259 | 262 |
| 260 #endif | 263 #endif |
| OLD | NEW |