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

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

Issue 1862513003: Remove NPAPI from browser and utility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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
« no previous file with comments | « chrome/common/crash_keys.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <stdint.h> 6 #include <stdint.h>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 21 matching lines...) Expand all
32 // Singly-included section for enums and custom IPC traits. 32 // Singly-included section for enums and custom IPC traits.
33 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ 33 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_
34 #define CHROME_COMMON_RENDER_MESSAGES_H_ 34 #define CHROME_COMMON_RENDER_MESSAGES_H_
35 35
36 enum class ChromeViewHostMsg_GetPluginInfo_Status { 36 enum class ChromeViewHostMsg_GetPluginInfo_Status {
37 kAllowed, 37 kAllowed,
38 kBlocked, 38 kBlocked,
39 kBlockedByPolicy, 39 kBlockedByPolicy,
40 kDisabled, 40 kDisabled,
41 kNotFound, 41 kNotFound,
42 kNPAPINotSupported,
43 kOutdatedBlocked, 42 kOutdatedBlocked,
44 kOutdatedDisallowed, 43 kOutdatedDisallowed,
45 kPlayImportantContent, 44 kPlayImportantContent,
46 kUnauthorized, 45 kUnauthorized,
47 }; 46 };
48 47
49 namespace IPC { 48 namespace IPC {
50 49
51 template <> 50 template <>
52 struct ParamTraits<ContentSettingsPattern> { 51 struct ParamTraits<ContentSettingsPattern> {
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 574
576 // Record a sample string to a Rappor metric. 575 // Record a sample string to a Rappor metric.
577 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, 576 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor,
578 std::string /* metric */, 577 std::string /* metric */,
579 std::string /* sample */) 578 std::string /* sample */)
580 579
581 // Record a domain and registry of a url to a Rappor metric. 580 // Record a domain and registry of a url to a Rappor metric.
582 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, 581 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL,
583 std::string /* metric */, 582 std::string /* metric */,
584 GURL /* sample url */) 583 GURL /* sample url */)
OLDNEW
« no previous file with comments | « chrome/common/crash_keys.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698