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

Side by Side Diff: content/renderer/pepper/pepper_in_process_router.h

Issue 2759103002: Add include guards to header files in content missing them (Closed)
Patch Set: Better name for include guards Created 3 years, 9 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/child/image_decoder.h ('k') | no next file » | 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_PEPPER_PEPPER_IN_PROCESS_ROUTER_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_ROUTER_H_
7
5 #include <memory> 8 #include <memory>
6 9
7 #include "base/callback.h" 10 #include "base/callback.h"
8 #include "base/macros.h" 11 #include "base/macros.h"
9 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
10 #include "ppapi/c/pp_instance.h" 13 #include "ppapi/c/pp_instance.h"
11 #include "ppapi/proxy/connection.h" 14 #include "ppapi/proxy/connection.h"
12 #include "ppapi/proxy/resource_message_params.h" 15 #include "ppapi/proxy/resource_message_params.h"
13 16
14 namespace IPC { 17 namespace IPC {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 98
96 // Reply result of the pending sync message. 99 // Reply result of the pending sync message.
97 bool reply_result_; 100 bool reply_result_;
98 101
99 base::WeakPtrFactory<PepperInProcessRouter> weak_factory_; 102 base::WeakPtrFactory<PepperInProcessRouter> weak_factory_;
100 103
101 DISALLOW_COPY_AND_ASSIGN(PepperInProcessRouter); 104 DISALLOW_COPY_AND_ASSIGN(PepperInProcessRouter);
102 }; 105 };
103 106
104 } // namespace content 107 } // namespace content
108
109 #endif // CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_ROUTER_H_
OLDNEW
« no previous file with comments | « content/child/image_decoder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698