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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 2613803005: [win] Enable ModuleDatabase behind a flag. (Closed)
Patch Set: Rebase. Created 3 years, 11 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/chrome_features.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 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 12 matching lines...) Expand all
23 #include "ipc/ipc_channel_proxy.h" 23 #include "ipc/ipc_channel_proxy.h"
24 #include "media/media_features.h" 24 #include "media/media_features.h"
25 #include "ppapi/features/features.h" 25 #include "ppapi/features/features.h"
26 #include "printing/features/features.h" 26 #include "printing/features/features.h"
27 #include "v8/include/v8.h" 27 #include "v8/include/v8.h"
28 28
29 #if defined (OS_CHROMEOS) 29 #if defined (OS_CHROMEOS)
30 #include "chrome/renderer/leak_detector/leak_detector_remote_client.h" 30 #include "chrome/renderer/leak_detector/leak_detector_remote_client.h"
31 #endif 31 #endif
32 32
33 #if defined(OS_WIN)
34 #include "chrome/common/conflicts/module_event_sink_win.mojom.h"
35 #include "chrome/common/conflicts/module_watcher_win.h"
36 #endif
37
33 class ChromeRenderThreadObserver; 38 class ChromeRenderThreadObserver;
34 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) 39 #if BUILDFLAG(ENABLE_PRINT_PREVIEW)
35 class ChromePDFPrintClient; 40 class ChromePDFPrintClient;
36 #endif 41 #endif
37 class PrescientNetworkingDispatcher; 42 class PrescientNetworkingDispatcher;
38 #if BUILDFLAG(ENABLE_SPELLCHECK) 43 #if BUILDFLAG(ENABLE_SPELLCHECK)
39 class SpellCheck; 44 class SpellCheck;
40 #endif 45 #endif
41 46
42 struct ChromeViewHostMsg_GetPluginInfo_Output; 47 struct ChromeViewHostMsg_GetPluginInfo_Output;
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 #endif 256 #endif
252 #if BUILDFLAG(ENABLE_PLUGINS) 257 #if BUILDFLAG(ENABLE_PLUGINS)
253 std::set<std::string> allowed_camera_device_origins_; 258 std::set<std::string> allowed_camera_device_origins_;
254 std::set<std::string> allowed_compositor_origins_; 259 std::set<std::string> allowed_compositor_origins_;
255 #endif 260 #endif
256 261
257 #if defined(OS_CHROMEOS) 262 #if defined(OS_CHROMEOS)
258 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_; 263 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_;
259 #endif 264 #endif
260 265
266 #if defined(OS_WIN)
267 // Observes module load and unload events and notifies the ModuleDatabase in
268 // the browser process.
269 std::unique_ptr<ModuleWatcher> module_watcher_;
270 mojom::ModuleEventSinkPtr module_event_sink_;
271 #endif
272
261 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient); 273 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient);
262 }; 274 };
263 275
264 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 276 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/common/chrome_features.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698