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: content/common/frame_messages.h

Issue 309143002: Navigation transitions: Added "addStyleSheetByURL" function to insert stylesheet links. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes from review. Created 6 years, 6 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 "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/common/content_param_traits.h" 9 #include "content/common/content_param_traits.h"
10 #include "content/common/frame_message_enums.h" 10 #include "content/common/frame_message_enums.h"
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 IPC_MESSAGE_ROUTED2(FrameMsg_DidChooseColorResponse, unsigned, SkColor) 352 IPC_MESSAGE_ROUTED2(FrameMsg_DidChooseColorResponse, unsigned, SkColor)
353 353
354 // Notifies the color chooser client that the color chooser has ended. 354 // Notifies the color chooser client that the color chooser has ended.
355 IPC_MESSAGE_ROUTED1(FrameMsg_DidEndColorChooser, unsigned) 355 IPC_MESSAGE_ROUTED1(FrameMsg_DidEndColorChooser, unsigned)
356 356
357 // Notifies the corresponding RenderFrameProxy object to replace itself with the 357 // Notifies the corresponding RenderFrameProxy object to replace itself with the
358 // RenderFrame object it is associated with. 358 // RenderFrame object it is associated with.
359 IPC_MESSAGE_ROUTED0(FrameMsg_DeleteProxy) 359 IPC_MESSAGE_ROUTED0(FrameMsg_DeleteProxy)
360 360
361 // ----------------------------------------------------------------------------- 361 // -----------------------------------------------------------------------------
362 // Messages sent from the browser to the renderer to support navigation
363 // transitions.
364
365 // Tells the renderer to insert a link to the specified stylesheet.
366 IPC_MESSAGE_ROUTED1(FrameMsg_AddStyleSheetByURL, std::string)
367
368 // -----------------------------------------------------------------------------
362 // Messages sent from the renderer to the browser. 369 // Messages sent from the renderer to the browser.
363 370
364 // Blink and JavaScript error messages to log to the console 371 // Blink and JavaScript error messages to log to the console
365 // or debugger UI. 372 // or debugger UI.
366 IPC_MESSAGE_ROUTED4(FrameHostMsg_AddMessageToConsole, 373 IPC_MESSAGE_ROUTED4(FrameHostMsg_AddMessageToConsole,
367 int32, /* log level */ 374 int32, /* log level */
368 base::string16, /* msg */ 375 base::string16, /* msg */
369 int32, /* line number */ 376 int32, /* line number */
370 base::string16 /* source id */ ) 377 base::string16 /* source id */ )
371 378
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 SkColor /* color */) 607 SkColor /* color */)
601 608
602 // Notifies the browser that media has started/stopped playing. 609 // Notifies the browser that media has started/stopped playing.
603 IPC_MESSAGE_ROUTED3(FrameHostMsg_MediaPlayingNotification, 610 IPC_MESSAGE_ROUTED3(FrameHostMsg_MediaPlayingNotification,
604 int64 /* player_cookie, distinguishes instances */, 611 int64 /* player_cookie, distinguishes instances */,
605 bool /* has_video */, 612 bool /* has_video */,
606 bool /* has_audio */) 613 bool /* has_audio */)
607 614
608 IPC_MESSAGE_ROUTED1(FrameHostMsg_MediaPausedNotification, 615 IPC_MESSAGE_ROUTED1(FrameHostMsg_MediaPausedNotification,
609 int64 /* player_cookie, distinguishes instances */) 616 int64 /* player_cookie, distinguishes instances */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698