OLD | NEW |
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 Loading... |
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 |
OLD | NEW |