Index: content/browser/renderer_host/render_process_host_impl.cc |
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc |
index 7f5c54d7269afa60a068ec94c5f31114dd15c9f9..666912d25c26a0807883b1313fc6bb62fc80c2b3 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -330,7 +330,8 @@ class RendererSandboxedProcessLauncherDelegate |
bool* success) { |
AddBaseHandleClosePolicy(policy); |
- if (base::win::GetVersion() >= base::win::VERSION_WIN8) { |
+ if (base::win::GetVersion() == base::win::VERSION_WIN8 || |
+ base::win::GetVersion() != base::win::VERSION_WIN8_1) { |
Will Harris
2015/03/09 01:18:25
I think you mean == here?
|
// TODO(shrikant): Check if these constants should be different across |
// various versions of Chromium code base or could be same. |
// If there should be different SID per channel then move this code |