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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 1653003002: Make scrollAnimatorEnabled work on Mac like it does on other platforms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Previous patch accidentally lost new files Created 4 years, 10 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 | « no previous file | content/browser/renderer_host/render_process_host_impl.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 CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 void GetAudioOutputControllers( 260 void GetAudioOutputControllers(
261 const GetAudioOutputControllersCallback& callback) const override; 261 const GetAudioOutputControllersCallback& callback) const override;
262 262
263 BluetoothDispatcherHost* GetBluetoothDispatcherHost(); 263 BluetoothDispatcherHost* GetBluetoothDispatcherHost();
264 264
265 #if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) 265 #if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX)
266 // Launch the zygote early in the browser startup. 266 // Launch the zygote early in the browser startup.
267 static void EarlyZygoteLaunch(); 267 static void EarlyZygoteLaunch();
268 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) 268 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX)
269 269
270 void RecomputeAndUpdateWebKitPreferences();
271
270 protected: 272 protected:
271 // A proxy for our IPC::Channel that lives on the IO thread. 273 // A proxy for our IPC::Channel that lives on the IO thread.
272 scoped_ptr<IPC::ChannelProxy> channel_; 274 scoped_ptr<IPC::ChannelProxy> channel_;
273 275
274 // True if fast shutdown has been performed on this RPH. 276 // True if fast shutdown has been performed on this RPH.
275 bool fast_shutdown_started_; 277 bool fast_shutdown_started_;
276 278
277 // True if we've posted a DeleteTask and will be deleted soon. 279 // True if we've posted a DeleteTask and will be deleted soon.
278 bool deleting_soon_; 280 bool deleting_soon_;
279 281
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 #endif 513 #endif
512 514
513 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 515 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
514 516
515 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 517 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
516 }; 518 };
517 519
518 } // namespace content 520 } // namespace content
519 521
520 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 522 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698