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

Side by Side Diff: chrome/common/render_messages.h

Issue 9133002: Added support for file URI path wildcards in content settings (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 8 years, 11 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 IPC_STRUCT_TRAITS_END() 123 IPC_STRUCT_TRAITS_END()
124 124
125 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts) 125 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts)
126 IPC_STRUCT_TRAITS_MEMBER(scheme) 126 IPC_STRUCT_TRAITS_MEMBER(scheme)
127 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard) 127 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard)
128 IPC_STRUCT_TRAITS_MEMBER(host) 128 IPC_STRUCT_TRAITS_MEMBER(host)
129 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard) 129 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard)
130 IPC_STRUCT_TRAITS_MEMBER(port) 130 IPC_STRUCT_TRAITS_MEMBER(port)
131 IPC_STRUCT_TRAITS_MEMBER(is_port_wildcard) 131 IPC_STRUCT_TRAITS_MEMBER(is_port_wildcard)
132 IPC_STRUCT_TRAITS_MEMBER(path) 132 IPC_STRUCT_TRAITS_MEMBER(path)
133 IPC_STRUCT_TRAITS_MEMBER(is_path_wildcard)
133 IPC_STRUCT_TRAITS_END() 134 IPC_STRUCT_TRAITS_END()
134 135
135 IPC_STRUCT_TRAITS_BEGIN(ContentSettingPatternSource) 136 IPC_STRUCT_TRAITS_BEGIN(ContentSettingPatternSource)
136 IPC_STRUCT_TRAITS_MEMBER(primary_pattern) 137 IPC_STRUCT_TRAITS_MEMBER(primary_pattern)
137 IPC_STRUCT_TRAITS_MEMBER(secondary_pattern) 138 IPC_STRUCT_TRAITS_MEMBER(secondary_pattern)
138 IPC_STRUCT_TRAITS_MEMBER(setting) 139 IPC_STRUCT_TRAITS_MEMBER(setting)
139 IPC_STRUCT_TRAITS_MEMBER(source) 140 IPC_STRUCT_TRAITS_MEMBER(source)
140 IPC_STRUCT_TRAITS_MEMBER(incognito) 141 IPC_STRUCT_TRAITS_MEMBER(incognito)
141 IPC_STRUCT_TRAITS_END() 142 IPC_STRUCT_TRAITS_END()
142 143
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 // previous SetCookie message to be processed. 611 // previous SetCookie message to be processed.
611 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 612 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
612 GURL /* url */, 613 GURL /* url */,
613 GURL /* first_party_for_cookies */, 614 GURL /* first_party_for_cookies */,
614 std::string /* cookies */) 615 std::string /* cookies */)
615 616
616 // Provide the browser process with current renderer framerate. 617 // Provide the browser process with current renderer framerate.
617 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 618 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
618 int /* routing id */, 619 int /* routing id */,
619 float /* frames per second */) 620 float /* frames per second */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698