| 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_WEB_CONTENTS_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ | 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "third_party/skia/include/core/SkColor.h" | 28 #include "third_party/skia/include/core/SkColor.h" |
| 29 #include "ui/base/window_open_disposition.h" | 29 #include "ui/base/window_open_disposition.h" |
| 30 #include "ui/gfx/geometry/rect.h" | 30 #include "ui/gfx/geometry/rect.h" |
| 31 #include "ui/gfx/native_widget_types.h" | 31 #include "ui/gfx/native_widget_types.h" |
| 32 | 32 |
| 33 #if defined(OS_ANDROID) | 33 #if defined(OS_ANDROID) |
| 34 #include "base/android/scoped_java_ref.h" | 34 #include "base/android/scoped_java_ref.h" |
| 35 #endif | 35 #endif |
| 36 | 36 |
| 37 namespace base { | 37 namespace base { |
| 38 class DictionaryValue; | |
| 39 class TimeTicks; | 38 class TimeTicks; |
| 40 } | 39 } |
| 41 | 40 |
| 42 namespace blink { | 41 namespace blink { |
| 43 struct WebFindOptions; | 42 struct WebFindOptions; |
| 44 } | 43 } |
| 45 | 44 |
| 46 namespace net { | 45 namespace net { |
| 47 struct LoadStateWithParam; | 46 struct LoadStateWithParam; |
| 48 } | 47 } |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 | 756 |
| 758 private: | 757 private: |
| 759 // This interface should only be implemented inside content. | 758 // This interface should only be implemented inside content. |
| 760 friend class WebContentsImpl; | 759 friend class WebContentsImpl; |
| 761 WebContents() {} | 760 WebContents() {} |
| 762 }; | 761 }; |
| 763 | 762 |
| 764 } // namespace content | 763 } // namespace content |
| 765 | 764 |
| 766 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ | 765 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ |
| OLD | NEW |