OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_WEB_PREFERENCES_POPULATER_IMPL_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_AW_WEB_PREFERENCES_POPULATER_IMPL_H_ |
| 7 |
| 8 #include "android_webview/browser/aw_web_preferences_populater.h" |
| 9 |
| 10 #include "base/compiler_specific.h" |
| 11 |
| 12 struct WebPreferences; |
| 13 |
| 14 namespace content { |
| 15 class WebContents; |
| 16 } |
| 17 |
| 18 namespace android_webview { |
| 19 |
| 20 class AwSettings; |
| 21 |
| 22 class AwWebPreferencesPopulaterImpl : public AwWebPreferencesPopulater { |
| 23 public: |
| 24 AwWebPreferencesPopulaterImpl(); |
| 25 virtual ~AwWebPreferencesPopulaterImpl(); |
| 26 |
| 27 // AwWebPreferencesPopulater |
| 28 virtual void PopulateFor(content::WebContents* web_contents, |
| 29 WebPreferences* web_prefs) OVERRIDE; |
| 30 }; |
| 31 |
| 32 } |
| 33 |
| 34 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_PREFERENCES_POPULATER_IMPL_H_ |
OLD | NEW |