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

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

Issue 339153002: Use suggested filename for "Save Link As" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 IPC_STRUCT_TRAITS_MEMBER(link_text) 46 IPC_STRUCT_TRAITS_MEMBER(link_text)
47 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url) 47 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url)
48 IPC_STRUCT_TRAITS_MEMBER(src_url) 48 IPC_STRUCT_TRAITS_MEMBER(src_url)
49 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) 49 IPC_STRUCT_TRAITS_MEMBER(has_image_contents)
50 IPC_STRUCT_TRAITS_MEMBER(page_url) 50 IPC_STRUCT_TRAITS_MEMBER(page_url)
51 IPC_STRUCT_TRAITS_MEMBER(keyword_url) 51 IPC_STRUCT_TRAITS_MEMBER(keyword_url)
52 IPC_STRUCT_TRAITS_MEMBER(frame_url) 52 IPC_STRUCT_TRAITS_MEMBER(frame_url)
53 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) 53 IPC_STRUCT_TRAITS_MEMBER(frame_page_state)
54 IPC_STRUCT_TRAITS_MEMBER(media_flags) 54 IPC_STRUCT_TRAITS_MEMBER(media_flags)
55 IPC_STRUCT_TRAITS_MEMBER(selection_text) 55 IPC_STRUCT_TRAITS_MEMBER(selection_text)
56 IPC_STRUCT_TRAITS_MEMBER(suggested_filename)
56 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) 57 IPC_STRUCT_TRAITS_MEMBER(misspelled_word)
57 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) 58 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash)
58 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) 59 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions)
59 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled) 60 IPC_STRUCT_TRAITS_MEMBER(spellcheck_enabled)
60 IPC_STRUCT_TRAITS_MEMBER(is_editable) 61 IPC_STRUCT_TRAITS_MEMBER(is_editable)
61 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default) 62 IPC_STRUCT_TRAITS_MEMBER(writing_direction_default)
62 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right) 63 IPC_STRUCT_TRAITS_MEMBER(writing_direction_left_to_right)
63 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left) 64 IPC_STRUCT_TRAITS_MEMBER(writing_direction_right_to_left)
64 IPC_STRUCT_TRAITS_MEMBER(edit_flags) 65 IPC_STRUCT_TRAITS_MEMBER(edit_flags)
65 IPC_STRUCT_TRAITS_MEMBER(security_info) 66 IPC_STRUCT_TRAITS_MEMBER(security_info)
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 613
613 IPC_MESSAGE_ROUTED1(FrameHostMsg_MediaPausedNotification, 614 IPC_MESSAGE_ROUTED1(FrameHostMsg_MediaPausedNotification,
614 int64 /* player_cookie, distinguishes instances */) 615 int64 /* player_cookie, distinguishes instances */)
615 616
616 // Response for FrameMsg_TextSurroundingSelectionRequest, |startOffset| and 617 // Response for FrameMsg_TextSurroundingSelectionRequest, |startOffset| and
617 // |endOffset| are the offsets of the selection in the returned |content|. 618 // |endOffset| are the offsets of the selection in the returned |content|.
618 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse, 619 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse,
619 base::string16, /* content */ 620 base::string16, /* content */
620 size_t, /* startOffset */ 621 size_t, /* startOffset */
621 size_t /* endOffset */) 622 size_t /* endOffset */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698