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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 virtual void OnSavePage() OVERRIDE; | 261 virtual void OnSavePage() OVERRIDE; |
262 virtual bool SavePage(const base::FilePath& main_file, | 262 virtual bool SavePage(const base::FilePath& main_file, |
263 const base::FilePath& dir_path, | 263 const base::FilePath& dir_path, |
264 SavePageType save_type) OVERRIDE; | 264 SavePageType save_type) OVERRIDE; |
265 virtual void SaveFrame(const GURL& url, | 265 virtual void SaveFrame(const GURL& url, |
266 const Referrer& referrer) OVERRIDE; | 266 const Referrer& referrer) OVERRIDE; |
267 virtual void GenerateMHTML( | 267 virtual void GenerateMHTML( |
268 const base::FilePath& file, | 268 const base::FilePath& file, |
269 const base::Callback<void(int64)>& callback) | 269 const base::Callback<void(int64)>& callback) |
270 OVERRIDE; | 270 OVERRIDE; |
271 virtual bool IsActiveEntry(int32 page_id) OVERRIDE; | |
272 | |
273 virtual const std::string& GetContentsMimeType() const OVERRIDE; | 271 virtual const std::string& GetContentsMimeType() const OVERRIDE; |
274 virtual bool WillNotifyDisconnection() const OVERRIDE; | 272 virtual bool WillNotifyDisconnection() const OVERRIDE; |
275 virtual void SetOverrideEncoding(const std::string& encoding) OVERRIDE; | 273 virtual void SetOverrideEncoding(const std::string& encoding) OVERRIDE; |
276 virtual void ResetOverrideEncoding() OVERRIDE; | 274 virtual void ResetOverrideEncoding() OVERRIDE; |
277 virtual RendererPreferences* GetMutableRendererPrefs() OVERRIDE; | 275 virtual RendererPreferences* GetMutableRendererPrefs() OVERRIDE; |
278 virtual void Close() OVERRIDE; | 276 virtual void Close() OVERRIDE; |
279 virtual void SystemDragEnded() OVERRIDE; | 277 virtual void SystemDragEnded() OVERRIDE; |
280 virtual void UserGestureDone() OVERRIDE; | 278 virtual void UserGestureDone() OVERRIDE; |
281 virtual void SetClosedByUserGesture(bool value) OVERRIDE; | 279 virtual void SetClosedByUserGesture(bool value) OVERRIDE; |
282 virtual bool GetClosedByUserGesture() const OVERRIDE; | 280 virtual bool GetClosedByUserGesture() const OVERRIDE; |
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1135 bool last_dialog_suppressed_; | 1133 bool last_dialog_suppressed_; |
1136 | 1134 |
1137 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1135 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
1138 | 1136 |
1139 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1137 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1140 }; | 1138 }; |
1141 | 1139 |
1142 } // namespace content | 1140 } // namespace content |
1143 | 1141 |
1144 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1142 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |