| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 | 340 |
| 341 virtual void SetHasReceivedUserGesture(bool received_previously) {} | 341 virtual void SetHasReceivedUserGesture(bool received_previously) {} |
| 342 | 342 |
| 343 virtual void SetDevToolsFrameId(const String& devtools_frame_id) {} | 343 virtual void SetDevToolsFrameId(const String& devtools_frame_id) {} |
| 344 | 344 |
| 345 virtual void AbortClientNavigation() {} | 345 virtual void AbortClientNavigation() {} |
| 346 | 346 |
| 347 virtual TextCheckerClient& GetTextCheckerClient() const = 0; | 347 virtual TextCheckerClient& GetTextCheckerClient() const = 0; |
| 348 | 348 |
| 349 virtual std::unique_ptr<WebURLLoader> CreateURLLoader() = 0; | 349 virtual std::unique_ptr<WebURLLoader> CreateURLLoader() = 0; |
| 350 |
| 351 virtual void AnnotatedRegionsChanged() = 0; |
| 350 }; | 352 }; |
| 351 | 353 |
| 352 } // namespace blink | 354 } // namespace blink |
| 353 | 355 |
| 354 #endif // LocalFrameClient_h | 356 #endif // LocalFrameClient_h |
| OLD | NEW |