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

Side by Side Diff: chrome/common/extensions/extension_messages.h

Issue 135723003: Move DidCommitProvisionalLoad code from RenderView to RenderFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing final nits. Created 6 years, 10 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
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // IPC messages for extensions. 5 // IPC messages for extensions.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 661
662 // Sent by the renderer to log a DOM action to the extension activity log. 662 // Sent by the renderer to log a DOM action to the extension activity log.
663 IPC_MESSAGE_CONTROL2(ExtensionHostMsg_AddDOMActionToActivityLog, 663 IPC_MESSAGE_CONTROL2(ExtensionHostMsg_AddDOMActionToActivityLog,
664 std::string /* extension_id */, 664 std::string /* extension_id */,
665 ExtensionHostMsg_DOMAction_Params) 665 ExtensionHostMsg_DOMAction_Params)
666 666
667 // Notifies the browser process that a tab has started or stopped matching 667 // Notifies the browser process that a tab has started or stopped matching
668 // certain conditions. This message is sent in response to several events: 668 // certain conditions. This message is sent in response to several events:
669 // 669 //
670 // * ExtensionMsg_WatchPages was received, updating the set of conditions. 670 // * ExtensionMsg_WatchPages was received, updating the set of conditions.
671 // * A new page is loaded. This will be sent after ViewHostMsg_FrameNavigate. 671 // * A new page is loaded. This will be sent after
672 // Currently this only fires for the main frame. 672 // FrameHostMsg_DidCommitProvisionalLoad. Currently this only fires for the
673 // main frame.
673 // * Something changed on an existing frame causing the set of matching searches 674 // * Something changed on an existing frame causing the set of matching searches
674 // to change. 675 // to change.
675 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange, 676 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange,
676 std::vector<std::string> /* Matching CSS selectors */) 677 std::vector<std::string> /* Matching CSS selectors */)
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698