Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: sky/engine/core/loader/FrameLoaderClient.h

Issue 878303002: Remove more scrolling code from Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « sky/engine/core/inspector/InspectorTraceEvents.cpp ('k') | sky/engine/core/page/AutoscrollController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698