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

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

Issue 187393005: Make it possible to read CLD data from a file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Now fully functional and debugged, but we need to package the file. Created 6 years, 9 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 (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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 // be treated as a webapp. 403 // be treated as a webapp.
404 IPC_MESSAGE_ROUTED1(ChromeViewMsg_RetrieveWebappInformation, 404 IPC_MESSAGE_ROUTED1(ChromeViewMsg_RetrieveWebappInformation,
405 GURL /* expected_url */) 405 GURL /* expected_url */)
406 406
407 // Asks the renderer to return information about the given meta tag. 407 // Asks the renderer to return information about the given meta tag.
408 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RetrieveMetaTagContent, 408 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RetrieveMetaTagContent,
409 GURL /* expected_url */, 409 GURL /* expected_url */,
410 std::string /* tag_name */ ) 410 std::string /* tag_name */ )
411 #endif // defined(OS_ANDROID) 411 #endif // defined(OS_ANDROID)
412 412
413 // Informs the renderer process that Compact Language Detector (CLD) data is
bulach 2014/03/11 18:56:10 probably best to keep close together with other tr
Andrew Hayden (chromium.org) 2014/03/13 16:33:33 Proximity: The ChromeViewMsg and ChromeViewHostMsg
414 // available and provides an IPC::PlatformFileForTransit obtained from
415 // IPC::GetFileHandleForProcess(...)
416 // See also: ChromeViewHostMsg_NeedCLDData
417 IPC_MESSAGE_ROUTED1(ChromeViewMsg_CLDDataAvailable,
418 IPC::PlatformFileForTransit)
419
413 // chrome.principals messages ------------------------------------------------ 420 // chrome.principals messages ------------------------------------------------
414 421
415 // Message sent from the renderer to the browser to get the list of browser 422 // Message sent from the renderer to the browser to get the list of browser
416 // managed accounts for the given origin. 423 // managed accounts for the given origin.
417 IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_GetManagedAccounts, 424 IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_GetManagedAccounts,
418 GURL /* current URL */, 425 GURL /* current URL */,
419 std::vector<std::string> /* managed accounts */) 426 std::vector<std::string> /* managed accounts */)
420 427
421 // Message sent from the renderer to the browser to show the browser account 428 // Message sent from the renderer to the browser to show the browser account
422 // management UI. 429 // management UI.
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 std::vector<GURL> /* search_urls */, 771 std::vector<GURL> /* search_urls */,
765 GURL /* new_tab_page_url */) 772 GURL /* new_tab_page_url */)
766 773
767 // Tells listeners that a detailed message was reported to the console by 774 // Tells listeners that a detailed message was reported to the console by
768 // WebKit. 775 // WebKit.
769 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, 776 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
770 base::string16 /* message */, 777 base::string16 /* message */,
771 base::string16 /* source */, 778 base::string16 /* source */,
772 extensions::StackTrace /* stack trace */, 779 extensions::StackTrace /* stack trace */,
773 int32 /* severity level */) 780 int32 /* severity level */)
781
782 // Informs the browser process that Compact Language Detector (CLD) data is
bulach 2014/03/11 18:56:10 ditto
Andrew Hayden (chromium.org) 2014/03/13 16:33:33 See other response.
783 // required by the originating renderer. The browser process should respond
784 // with a ChromeViewMsg_CLDDataAvailable if the data is available, else it
785 // should go unanswered (the renderer will ask again later)
786 // See also: ChromeViewMsg_CLDDataAvailable
787 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_NeedCLDData)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698