OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights |
3 * reserved. | 3 * reserved. |
4 * Copyright (C) 2012 Google Inc. All rights reserved. | 4 * Copyright (C) 2012 Google Inc. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 } | 316 } |
317 | 317 |
318 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is | 318 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is |
319 // returned if the URL is not overriden. | 319 // returned if the URL is not overriden. |
320 virtual KURL OverrideFlashEmbedWithHTML(const KURL&) { return KURL(); } | 320 virtual KURL OverrideFlashEmbedWithHTML(const KURL&) { return KURL(); } |
321 | 321 |
322 virtual BlameContext* GetFrameBlameContext() { return nullptr; } | 322 virtual BlameContext* GetFrameBlameContext() { return nullptr; } |
323 | 323 |
324 virtual void SetHasReceivedUserGesture(bool received_previously) {} | 324 virtual void SetHasReceivedUserGesture(bool received_previously) {} |
325 | 325 |
| 326 virtual void SetDevToolsFrameId(const String& devtools_frame_id) {} |
| 327 |
326 virtual void AbortClientNavigation() {} | 328 virtual void AbortClientNavigation() {} |
327 | 329 |
328 virtual TextCheckerClient& GetTextCheckerClient() const = 0; | 330 virtual TextCheckerClient& GetTextCheckerClient() const = 0; |
329 }; | 331 }; |
330 | 332 |
331 } // namespace blink | 333 } // namespace blink |
332 | 334 |
333 #endif // LocalFrameClient_h | 335 #endif // LocalFrameClient_h |
OLD | NEW |