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

Side by Side Diff: content/common/frame_messages.h

Issue 1686823003: Canvas capture from inactive tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for interacting with frames. 5 // IPC messages for interacting with frames.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1425 // frame traversal order starting in the main frame, then by dom order. 1425 // frame traversal order starting in the main frame, then by dom order.
1426 // 1426 //
1427 // |active_rect| will contain the bounding box of the active find-in-page match 1427 // |active_rect| will contain the bounding box of the active find-in-page match
1428 // marker, in similarly normalized coords (or an empty rect if there isn't one). 1428 // marker, in similarly normalized coords (or an empty rect if there isn't one).
1429 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1429 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1430 int /* version */, 1430 int /* version */,
1431 std::vector<gfx::RectF> /* rects */, 1431 std::vector<gfx::RectF> /* rects */,
1432 gfx::RectF /* active_rect */) 1432 gfx::RectF /* active_rect */)
1433 #endif 1433 #endif
1434 1434
1435 IPC_MESSAGE_ROUTED0(FrameHostMsg_IncrementCapturerCount)
1436 IPC_MESSAGE_ROUTED0(FrameHostMsg_DecrementCapturerCount)
1437
1435 // Adding a new message? Stick to the sort order above: first platform 1438 // Adding a new message? Stick to the sort order above: first platform
1436 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1439 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1437 // platform independent FrameHostMsg, then ifdefs for platform specific 1440 // platform independent FrameHostMsg, then ifdefs for platform specific
1438 // FrameHostMsg. 1441 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/renderer/media/canvas_capture_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698