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

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

Issue 1624583003: Reload Lo-Fi images inline instead of reloading the whole page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adding blink test 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 557
558 // Notifies the embedding frame that the process rendering the child frame's 558 // Notifies the embedding frame that the process rendering the child frame's
559 // contents has terminated. 559 // contents has terminated.
560 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone) 560 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone)
561 561
562 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that 562 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that
563 // the menu has been closed. 563 // the menu has been closed.
564 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed, 564 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed,
565 content::CustomContextMenuContext /* custom_context */) 565 content::CustomContextMenuContext /* custom_context */)
566 566
567 // Reloads all the Lo-Fi images in the RenderFrame. Ignores the cache and
568 // reloads from the network.
569 IPC_MESSAGE_ROUTED0(FrameMsg_ReloadLoFiImages)
570
567 // Executes custom context menu action that was provided from Blink. 571 // Executes custom context menu action that was provided from Blink.
568 IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction, 572 IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction,
569 content::CustomContextMenuContext /* custom_context */, 573 content::CustomContextMenuContext /* custom_context */,
570 unsigned /* action */) 574 unsigned /* action */)
571 575
572 // Requests that the RenderFrame or RenderFrameProxy updates its opener to the 576 // Requests that the RenderFrame or RenderFrameProxy updates its opener to the
573 // specified frame. The routing ID may be MSG_ROUTING_NONE if the opener was 577 // specified frame. The routing ID may be MSG_ROUTING_NONE if the opener was
574 // disowned. 578 // disowned.
575 IPC_MESSAGE_ROUTED1(FrameMsg_UpdateOpener, int /* opener_routing_id */) 579 IPC_MESSAGE_ROUTED1(FrameMsg_UpdateOpener, int /* opener_routing_id */)
576 580
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after
1433 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1437 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1434 int /* version */, 1438 int /* version */,
1435 std::vector<gfx::RectF> /* rects */, 1439 std::vector<gfx::RectF> /* rects */,
1436 gfx::RectF /* active_rect */) 1440 gfx::RectF /* active_rect */)
1437 #endif 1441 #endif
1438 1442
1439 // Adding a new message? Stick to the sort order above: first platform 1443 // Adding a new message? Stick to the sort order above: first platform
1440 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1444 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1441 // platform independent FrameHostMsg, then ifdefs for platform specific 1445 // platform independent FrameHostMsg, then ifdefs for platform specific
1442 // FrameHostMsg. 1446 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698