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

Side by Side Diff: content/renderer/render_thread_impl.h

Issue 525513003: Cleanup: Put more plugin code behind the ENABLE_PLUGINS ifdef. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 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 | « content/public/common/pepper_plugin_info.h ('k') | content/renderer/render_thread_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_RENDERER_RENDER_THREAD_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 424
425 void OnCreateNewFrame(int routing_id, int parent_routing_id); 425 void OnCreateNewFrame(int routing_id, int parent_routing_id);
426 void OnCreateNewFrameProxy(int routing_id, 426 void OnCreateNewFrameProxy(int routing_id,
427 int parent_routing_id, 427 int parent_routing_id,
428 int render_view_routing_id); 428 int render_view_routing_id);
429 void OnSetZoomLevelForCurrentURL(const std::string& scheme, 429 void OnSetZoomLevelForCurrentURL(const std::string& scheme,
430 const std::string& host, 430 const std::string& host,
431 double zoom_level); 431 double zoom_level);
432 void OnCreateNewView(const ViewMsg_New_Params& params); 432 void OnCreateNewView(const ViewMsg_New_Params& params);
433 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); 433 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id);
434 #if defined(ENABLE_PLUGINS)
434 void OnPurgePluginListCache(bool reload_pages); 435 void OnPurgePluginListCache(bool reload_pages);
436 #endif
435 void OnNetworkTypeChanged(net::NetworkChangeNotifier::ConnectionType type); 437 void OnNetworkTypeChanged(net::NetworkChangeNotifier::ConnectionType type);
436 void OnGetAccessibilityTree(); 438 void OnGetAccessibilityTree();
437 void OnTempCrashWithData(const GURL& data); 439 void OnTempCrashWithData(const GURL& data);
438 void OnUpdateTimezone(); 440 void OnUpdateTimezone();
439 void OnMemoryPressure( 441 void OnMemoryPressure(
440 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); 442 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level);
441 #if defined(OS_ANDROID) 443 #if defined(OS_ANDROID)
442 void OnSetWebKitSharedTimersSuspended(bool suspend); 444 void OnSetWebKitSharedTimersSuspended(bool suspend);
443 #endif 445 #endif
444 #if defined(OS_MACOSX) 446 #if defined(OS_MACOSX)
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 bool is_one_copy_enabled_; 580 bool is_one_copy_enabled_;
579 581
580 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; 582 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_;
581 583
582 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 584 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
583 }; 585 };
584 586
585 } // namespace content 587 } // namespace content
586 588
587 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 589 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/common/pepper_plugin_info.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698