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

Unified Diff: chrome/common/render_messages.h

Issue 8312005: Ignore paths when matching patterns for extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/render_messages.h
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
index 7e09b6e5850b7cace20cfca8af3d54bb683871e2..14dfbfcf371d564e142078b1a6cd230c2590059f 100644
--- a/chrome/common/render_messages.h
+++ b/chrome/common/render_messages.h
@@ -547,10 +547,10 @@ IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting)
// Sent by the renderer to check if a URL has permission to trigger a clipboard
// read/write operation from the DOM.
IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead,
- GURL /* url */,
+ std::string /* origin */,
Aaron Boodman 2011/10/20 06:53:51 Why string instead of GURL?
bool /* allowed */)
IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite,
- GURL /* url */,
+ std::string /* origin */,
bool /* allowed */)
// Sent when the renderer was prevented from displaying insecure content in

Powered by Google App Engine
This is Rietveld 408576698