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

Side by Side Diff: ppapi/host/message_filter_host.cc

Issue 23484036: Add newlines to the end of files where they were missing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 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 | Annotate | Revision Log
« no previous file with comments | « media/base/scoped_histogram_timer_unittest.cc ('k') | ppapi/proxy/url_loader_resource.h » ('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 #include "ppapi/host/message_filter_host.h" 5 #include "ppapi/host/message_filter_host.h"
6 6
7 #include "ppapi/host/ppapi_host.h" 7 #include "ppapi/host/ppapi_host.h"
8 #include "ppapi/host/resource_message_filter.h" 8 #include "ppapi/host/resource_message_filter.h"
9 9
10 namespace ppapi { 10 namespace ppapi {
11 namespace host { 11 namespace host {
12 12
13 MessageFilterHost::MessageFilterHost( 13 MessageFilterHost::MessageFilterHost(
14 PpapiHost* host, 14 PpapiHost* host,
15 PP_Instance instance, 15 PP_Instance instance,
16 PP_Resource resource, 16 PP_Resource resource,
17 const scoped_refptr<ResourceMessageFilter>& message_filter) 17 const scoped_refptr<ResourceMessageFilter>& message_filter)
18 : ResourceHost(host, instance, resource) { 18 : ResourceHost(host, instance, resource) {
19 AddFilter(message_filter); 19 AddFilter(message_filter);
20 } 20 }
21 21
22 MessageFilterHost::~MessageFilterHost() { 22 MessageFilterHost::~MessageFilterHost() {
23 } 23 }
24 24
25 } // namespace host 25 } // namespace host
26 } // namespace ppapi 26 } // namespace ppapi
OLDNEW
« no previous file with comments | « media/base/scoped_histogram_timer_unittest.cc ('k') | ppapi/proxy/url_loader_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698