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

Side by Side Diff: content/browser/renderer_host/java/java_bridge_dispatcher_host_manager.h

Issue 10696166: Remove #pragma once from content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
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_JAVA_JAVA_BRIDGE_DISPATCHER_HOST_MANAGER_H _ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_DISPATCHER_HOST_MANAGER_H _
6 #define CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_DISPATCHER_HOST_MANAGER_H _ 6 #define CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_DISPATCHER_HOST_MANAGER_H _
7 #pragma once
8 7
9 #include <map> 8 #include <map>
10 9
11 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
12 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
13 #include "base/string16.h" 12 #include "base/string16.h"
14 #include "content/public/browser/web_contents_observer.h" 13 #include "content/public/browser/web_contents_observer.h"
15 14
16 class JavaBridgeDispatcherHost; 15 class JavaBridgeDispatcherHost;
17 struct NPObject; 16 struct NPObject;
(...skipping 29 matching lines...) Expand all
47 scoped_refptr<JavaBridgeDispatcherHost> > 46 scoped_refptr<JavaBridgeDispatcherHost> >
48 InstanceMap; 47 InstanceMap;
49 InstanceMap instances_; 48 InstanceMap instances_;
50 typedef std::map<string16, NPObject*> ObjectMap; 49 typedef std::map<string16, NPObject*> ObjectMap;
51 ObjectMap objects_; 50 ObjectMap objects_;
52 51
53 DISALLOW_COPY_AND_ASSIGN(JavaBridgeDispatcherHostManager); 52 DISALLOW_COPY_AND_ASSIGN(JavaBridgeDispatcherHostManager);
54 }; 53 };
55 54
56 #endif // CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_DISPATCHER_HOST_MANAGE R_H_ 55 #endif // CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_DISPATCHER_HOST_MANAGE R_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698