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

Side by Side Diff: public/web/WebFrameClient.h

Issue 135163006: WebFrame exports size information for remote frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Resolved merge conflict with master Created 6 years, 10 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
« no previous file with comments | « public/web/WebFrame.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 371
372 // Notifies the client that a WebGL context was lost on this page with the 372 // Notifies the client that a WebGL context was lost on this page with the
373 // given reason (one of the GL_ARB_robustness status codes; see 373 // given reason (one of the GL_ARB_robustness status codes; see
374 // Extensions3D.h in WebCore/platform/graphics). 374 // Extensions3D.h in WebCore/platform/graphics).
375 virtual void didLoseWebGLContext(WebFrame*, int) { } 375 virtual void didLoseWebGLContext(WebFrame*, int) { }
376 376
377 // FIXME: Remove this method once we have input routing in the browser 377 // FIXME: Remove this method once we have input routing in the browser
378 // process. See http://crbug.com/339659. 378 // process. See http://crbug.com/339659.
379 virtual void forwardInputEvent(const WebInputEvent*) { } 379 virtual void forwardInputEvent(const WebInputEvent*) { }
380 380
381 // Send initial drawing parameters to a child frame that is being rendered o ut of process.
382 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFacto r) { }
383
381 protected: 384 protected:
382 ~WebFrameClient() { } 385 ~WebFrameClient() { }
383 }; 386 };
384 387
385 } // namespace blink 388 } // namespace blink
386 389
387 #endif 390 #endif
OLDNEW
« no previous file with comments | « public/web/WebFrame.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698