| 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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 const GURL& url, | 789 const GURL& url, |
| 790 const base::FilePath& plugin_path); | 790 const base::FilePath& plugin_path); |
| 791 void OnBrowserPluginMessage(const IPC::Message& message); | 791 void OnBrowserPluginMessage(const IPC::Message& message); |
| 792 void OnDidDownloadImage(int id, | 792 void OnDidDownloadImage(int id, |
| 793 int http_status_code, | 793 int http_status_code, |
| 794 const GURL& image_url, | 794 const GURL& image_url, |
| 795 const std::vector<SkBitmap>& bitmaps, | 795 const std::vector<SkBitmap>& bitmaps, |
| 796 const std::vector<gfx::Size>& original_bitmap_sizes); | 796 const std::vector<gfx::Size>& original_bitmap_sizes); |
| 797 void OnUpdateFaviconURL(const std::vector<FaviconURL>& candidates); | 797 void OnUpdateFaviconURL(const std::vector<FaviconURL>& candidates); |
| 798 void OnFirstVisuallyNonEmptyPaint(); | 798 void OnFirstVisuallyNonEmptyPaint(); |
| 799 void OnWebUIMojoMainRan(); |
| 799 void OnMediaPlayingNotification(int64 player_cookie, | 800 void OnMediaPlayingNotification(int64 player_cookie, |
| 800 bool has_video, | 801 bool has_video, |
| 801 bool has_audio); | 802 bool has_audio); |
| 802 void OnMediaPausedNotification(int64 player_cookie); | 803 void OnMediaPausedNotification(int64 player_cookie); |
| 803 void OnShowValidationMessage(const gfx::Rect& anchor_in_root_view, | 804 void OnShowValidationMessage(const gfx::Rect& anchor_in_root_view, |
| 804 const base::string16& main_text, | 805 const base::string16& main_text, |
| 805 const base::string16& sub_text); | 806 const base::string16& sub_text); |
| 806 void OnHideValidationMessage(); | 807 void OnHideValidationMessage(); |
| 807 void OnMoveValidationMessage(const gfx::Rect& anchor_in_root_view); | 808 void OnMoveValidationMessage(const gfx::Rect& anchor_in_root_view); |
| 808 | 809 |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1184 // The accessibility mode for all frames. This is queried when each frame | 1185 // The accessibility mode for all frames. This is queried when each frame |
| 1185 // is created, and broadcast to all frames when it changes. | 1186 // is created, and broadcast to all frames when it changes. |
| 1186 AccessibilityMode accessibility_mode_; | 1187 AccessibilityMode accessibility_mode_; |
| 1187 | 1188 |
| 1188 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1189 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1189 }; | 1190 }; |
| 1190 | 1191 |
| 1191 } // namespace content | 1192 } // namespace content |
| 1192 | 1193 |
| 1193 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1194 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |