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

Side by Side Diff: chrome/browser/renderer_host/chrome_extension_message_filter.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_EXTENSION_MESSAGE_FILTER_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_EXTENSION_MESSAGE_FILTER_H_
6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_EXTENSION_MESSAGE_FILTER_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_EXTENSION_MESSAGE_FILTER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h"
10 #include "base/sequenced_task_runner_helpers.h" 11 #include "base/sequenced_task_runner_helpers.h"
11 #include "content/public/browser/browser_message_filter.h" 12 #include "content/public/browser/browser_message_filter.h"
12 #include "content/public/browser/notification_observer.h" 13 #include "content/public/browser/notification_observer.h"
13 #include "content/public/browser/notification_registrar.h" 14 #include "content/public/browser/notification_registrar.h"
14 15
15 class GURL; 16 class GURL;
16 class Profile; 17 class Profile;
17 struct ExtensionHostMsg_APIActionOrEvent_Params; 18 struct ExtensionHostMsg_APIActionOrEvent_Params;
18 struct ExtensionHostMsg_DOMAction_Params; 19 struct ExtensionHostMsg_DOMAction_Params;
19 struct ExtensionMsg_ExternalConnectionInfo; 20 struct ExtensionMsg_ExternalConnectionInfo;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 Profile* profile_; 116 Profile* profile_;
116 117
117 scoped_refptr<extensions::InfoMap> extension_info_map_; 118 scoped_refptr<extensions::InfoMap> extension_info_map_;
118 119
119 content::NotificationRegistrar notification_registrar_; 120 content::NotificationRegistrar notification_registrar_;
120 121
121 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionMessageFilter); 122 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionMessageFilter);
122 }; 123 };
123 124
124 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_EXTENSION_MESSAGE_FILTER_H_ 125 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_EXTENSION_MESSAGE_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698