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 ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_VIEW_DELEGATE_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_H_ |
6 #define ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_VIEW_DELEGATE_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_H_ |
7 | 7 |
8 #include "content/public/browser/web_contents_view_delegate.h" | 8 #include "content/public/browser/web_contents_view_delegate.h" |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 class WebContents; | 13 class WebContents; |
14 } // namespace content | 14 } // namespace content |
15 | 15 |
16 namespace android_webview { | 16 namespace android_webview { |
(...skipping 15 matching lines...) Expand all Loading... |
32 | 32 |
33 // Weak pointer due to ownership graph: | 33 // Weak pointer due to ownership graph: |
34 // WebContents->WebContentsView->this. | 34 // WebContents->WebContentsView->this. |
35 content::WebContents* web_contents_; | 35 content::WebContents* web_contents_; |
36 | 36 |
37 DISALLOW_COPY_AND_ASSIGN(AwWebContentsViewDelegate); | 37 DISALLOW_COPY_AND_ASSIGN(AwWebContentsViewDelegate); |
38 }; | 38 }; |
39 | 39 |
40 } // namespace android_webview | 40 } // namespace android_webview |
41 | 41 |
42 | 42 #endif // ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_H_ |
43 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_VIEW_DELEGATE_H_ | |
OLD | NEW |