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

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

Issue 304273004: Add name to services (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Get chrome to build Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/child/child_thread.cc ('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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 virtual void DeleteImage(int32 image_id, int32 sync_point) OVERRIDE; 415 virtual void DeleteImage(int32 image_id, int32 sync_point) OVERRIDE;
416 virtual scoped_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( 416 virtual scoped_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer(
417 size_t width, 417 size_t width,
418 size_t height, 418 size_t height,
419 unsigned internalformat, 419 unsigned internalformat,
420 unsigned usage) OVERRIDE; 420 unsigned usage) OVERRIDE;
421 421
422 // mojo::ServiceProvider implementation: 422 // mojo::ServiceProvider implementation:
423 virtual void ConnectToService( 423 virtual void ConnectToService(
424 const mojo::String& service_name, 424 const mojo::String& service_name,
425 const mojo::String& name,
425 mojo::ScopedMessagePipeHandle message_pipe) OVERRIDE; 426 mojo::ScopedMessagePipeHandle message_pipe) OVERRIDE;
426 427
427 void Init(); 428 void Init();
428 429
429 void OnSetZoomLevelForCurrentURL(const std::string& scheme, 430 void OnSetZoomLevelForCurrentURL(const std::string& scheme,
430 const std::string& host, 431 const std::string& host,
431 double zoom_level); 432 double zoom_level);
432 void OnCreateNewView(const ViewMsg_New_Params& params); 433 void OnCreateNewView(const ViewMsg_New_Params& params);
433 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); 434 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id);
434 void OnPurgePluginListCache(bool reload_pages); 435 void OnPurgePluginListCache(bool reload_pages);
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 bool is_distance_field_text_enabled_; 567 bool is_distance_field_text_enabled_;
567 bool is_zero_copy_enabled_; 568 bool is_zero_copy_enabled_;
568 bool is_one_copy_enabled_; 569 bool is_one_copy_enabled_;
569 570
570 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 571 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
571 }; 572 };
572 573
573 } // namespace content 574 } // namespace content
574 575
575 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 576 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/child_thread.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698