| 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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 virtual const std::string& GetContentsMimeType() const OVERRIDE; | 270 virtual const std::string& GetContentsMimeType() const OVERRIDE; |
| 271 virtual bool WillNotifyDisconnection() const OVERRIDE; | 271 virtual bool WillNotifyDisconnection() const OVERRIDE; |
| 272 virtual void SetOverrideEncoding(const std::string& encoding) OVERRIDE; | 272 virtual void SetOverrideEncoding(const std::string& encoding) OVERRIDE; |
| 273 virtual void ResetOverrideEncoding() OVERRIDE; | 273 virtual void ResetOverrideEncoding() OVERRIDE; |
| 274 virtual RendererPreferences* GetMutableRendererPrefs() OVERRIDE; | 274 virtual RendererPreferences* GetMutableRendererPrefs() OVERRIDE; |
| 275 virtual void Close() OVERRIDE; | 275 virtual void Close() OVERRIDE; |
| 276 virtual void SystemDragEnded() OVERRIDE; | 276 virtual void SystemDragEnded() OVERRIDE; |
| 277 virtual void UserGestureDone() OVERRIDE; | 277 virtual void UserGestureDone() OVERRIDE; |
| 278 virtual void SetClosedByUserGesture(bool value) OVERRIDE; | 278 virtual void SetClosedByUserGesture(bool value) OVERRIDE; |
| 279 virtual bool GetClosedByUserGesture() const OVERRIDE; | 279 virtual bool GetClosedByUserGesture() const OVERRIDE; |
| 280 virtual int GetZoomPercent(bool* enable_increment, | |
| 281 bool* enable_decrement) const OVERRIDE; | |
| 282 virtual void ViewSource() OVERRIDE; | 280 virtual void ViewSource() OVERRIDE; |
| 283 virtual void ViewFrameSource(const GURL& url, | 281 virtual void ViewFrameSource(const GURL& url, |
| 284 const PageState& page_state) OVERRIDE; | 282 const PageState& page_state) OVERRIDE; |
| 285 virtual int GetMinimumZoomPercent() const OVERRIDE; | 283 virtual int GetMinimumZoomPercent() const OVERRIDE; |
| 286 virtual int GetMaximumZoomPercent() const OVERRIDE; | 284 virtual int GetMaximumZoomPercent() const OVERRIDE; |
| 287 virtual gfx::Size GetPreferredSize() const OVERRIDE; | 285 virtual gfx::Size GetPreferredSize() const OVERRIDE; |
| 288 virtual bool GotResponseToLockMouseRequest(bool allowed) OVERRIDE; | 286 virtual bool GotResponseToLockMouseRequest(bool allowed) OVERRIDE; |
| 289 virtual bool HasOpener() const OVERRIDE; | 287 virtual bool HasOpener() const OVERRIDE; |
| 290 virtual void DidChooseColorInColorChooser(SkColor color) OVERRIDE; | 288 virtual void DidChooseColorInColorChooser(SkColor color) OVERRIDE; |
| 291 virtual void DidEndColorChooser() OVERRIDE; | 289 virtual void DidEndColorChooser() OVERRIDE; |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 bool last_dialog_suppressed_; | 1128 bool last_dialog_suppressed_; |
| 1131 | 1129 |
| 1132 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1130 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
| 1133 | 1131 |
| 1134 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1132 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1135 }; | 1133 }; |
| 1136 | 1134 |
| 1137 } // namespace content | 1135 } // namespace content |
| 1138 | 1136 |
| 1139 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1137 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |