OLD | NEW |
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_PUBLIC_BROWSER_CONTENT_VIEW_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_CONTENT_VIEW_H_ |
6 #define CONTENT_PUBLIC_BROWSER_CONTENT_VIEW_H_ | 6 #define CONTENT_PUBLIC_BROWSER_CONTENT_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <jni.h> | 9 #include <jni.h> |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 WebContents* web_contents); | 34 WebContents* web_contents); |
35 static ContentView* GetNativeContentView(JNIEnv* env, jobject obj); | 35 static ContentView* GetNativeContentView(JNIEnv* env, jobject obj); |
36 | 36 |
37 protected: | 37 protected: |
38 virtual ~ContentView() {}; | 38 virtual ~ContentView() {}; |
39 }; | 39 }; |
40 | 40 |
41 }; // namespace content | 41 }; // namespace content |
42 | 42 |
43 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_VIEW_H_ | 43 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_VIEW_H_ |
OLD | NEW |