| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 virtual void selectorMatchChanged(const Vector<String>& addedSelectors,
const Vector<String>& removedSelectors) = 0; | 100 virtual void selectorMatchChanged(const Vector<String>& addedSelectors,
const Vector<String>& removedSelectors) = 0; |
| 101 | 101 |
| 102 virtual void transitionToCommittedForNewPage() = 0; | 102 virtual void transitionToCommittedForNewPage() = 0; |
| 103 | 103 |
| 104 | 104 |
| 105 virtual void documentElementAvailable() = 0; | 105 virtual void documentElementAvailable() = 0; |
| 106 | 106 |
| 107 virtual void didCreateScriptContext(v8::Handle<v8::Context>) = 0; | 107 virtual void didCreateScriptContext(v8::Handle<v8::Context>) = 0; |
| 108 virtual void willReleaseScriptContext(v8::Handle<v8::Context>) = 0; | 108 virtual void willReleaseScriptContext(v8::Handle<v8::Context>) = 0; |
| 109 | 109 |
| 110 virtual void didChangeScrollOffset() { } | |
| 111 | |
| 112 // Informs the embedder that a WebGL canvas inside this frame received a
lost context | 110 // Informs the embedder that a WebGL canvas inside this frame received a
lost context |
| 113 // notification with the given GL_ARB_robustness guilt/innocence code (s
ee Extensions3D.h). | 111 // notification with the given GL_ARB_robustness guilt/innocence code (s
ee Extensions3D.h). |
| 114 virtual void didLoseWebGLContext(int) { } | 112 virtual void didLoseWebGLContext(int) { } |
| 115 | 113 |
| 116 virtual void dispatchDidChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority, int intraPriorityValue) { } | 114 virtual void dispatchDidChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority, int intraPriorityValue) { } |
| 117 | 115 |
| 118 virtual void dispatchDidChangeManifest() { } | 116 virtual void dispatchDidChangeManifest() { } |
| 119 | 117 |
| 120 virtual bool isFrameLoaderClientImpl() const { return false; } | 118 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 121 }; | 119 }; |
| 122 | 120 |
| 123 } // namespace blink | 121 } // namespace blink |
| 124 | 122 |
| 125 #endif // SKY_ENGINE_CORE_LOADER_FRAMELOADERCLIENT_H_ | 123 #endif // SKY_ENGINE_CORE_LOADER_FRAMELOADERCLIENT_H_ |
| OLD | NEW |