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

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

Issue 2613803005: [win] Enable ModuleDatabase behind a flag. (Closed)
Patch Set: 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
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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 #endif 252 #endif
248 #if BUILDFLAG(ENABLE_PLUGINS) 253 #if BUILDFLAG(ENABLE_PLUGINS)
249 std::set<std::string> allowed_camera_device_origins_; 254 std::set<std::string> allowed_camera_device_origins_;
250 std::set<std::string> allowed_compositor_origins_; 255 std::set<std::string> allowed_compositor_origins_;
251 #endif 256 #endif
252 257
253 #if defined(OS_CHROMEOS) 258 #if defined(OS_CHROMEOS)
254 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_; 259 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_;
255 #endif 260 #endif
256 261
262 #if defined(OS_WIN)
263 // Observes module load and unload events and notifies the ModuleDatabase in
264 // the browser process.
265 std::unique_ptr<ModuleWatcher> module_watcher_;
266 mojom::ModuleEventSinkPtr module_event_sink_;
267 #endif
268
257 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient); 269 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient);
258 }; 270 };
259 271
260 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 272 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698