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

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

Issue 251823002: Move didAccessInitialDocument to RenderFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 SkColor /* color */, 561 SkColor /* color */,
562 std::vector<content::ColorSuggestion> /* suggestions */) 562 std::vector<content::ColorSuggestion> /* suggestions */)
563 563
564 // Asks the browser to end the color chooser. 564 // Asks the browser to end the color chooser.
565 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */) 565 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */)
566 566
567 // Change the selected color in the color chooser. 567 // Change the selected color in the color chooser.
568 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser, 568 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser,
569 int /* id */, 569 int /* id */,
570 SkColor /* color */) 570 SkColor /* color */)
571
572 // Notifies that the initial empty document of a view has been accessed.
573 // After this, it is no longer safe to show a pending navigation's URL without
574 // making a URL spoof possible.
575 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidAccessInitialDocument)
576
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698