Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 365513002: Port identity_internals to mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch beautification Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 const GURL& url, 765 const GURL& url,
766 const base::FilePath& plugin_path); 766 const base::FilePath& plugin_path);
767 void OnBrowserPluginMessage(const IPC::Message& message); 767 void OnBrowserPluginMessage(const IPC::Message& message);
768 void OnDidDownloadImage(int id, 768 void OnDidDownloadImage(int id,
769 int http_status_code, 769 int http_status_code,
770 const GURL& image_url, 770 const GURL& image_url,
771 const std::vector<SkBitmap>& bitmaps, 771 const std::vector<SkBitmap>& bitmaps,
772 const std::vector<gfx::Size>& original_bitmap_sizes); 772 const std::vector<gfx::Size>& original_bitmap_sizes);
773 void OnUpdateFaviconURL(const std::vector<FaviconURL>& candidates); 773 void OnUpdateFaviconURL(const std::vector<FaviconURL>& candidates);
774 void OnFirstVisuallyNonEmptyPaint(); 774 void OnFirstVisuallyNonEmptyPaint();
775 void OnWebUIMojoMainRan();
775 void OnMediaPlayingNotification(int64 player_cookie, 776 void OnMediaPlayingNotification(int64 player_cookie,
776 bool has_video, 777 bool has_video,
777 bool has_audio); 778 bool has_audio);
778 void OnMediaPausedNotification(int64 player_cookie); 779 void OnMediaPausedNotification(int64 player_cookie);
779 void OnShowValidationMessage(const gfx::Rect& anchor_in_root_view, 780 void OnShowValidationMessage(const gfx::Rect& anchor_in_root_view,
780 const base::string16& main_text, 781 const base::string16& main_text,
781 const base::string16& sub_text); 782 const base::string16& sub_text);
782 void OnHideValidationMessage(); 783 void OnHideValidationMessage();
783 void OnMoveValidationMessage(const gfx::Rect& anchor_in_root_view); 784 void OnMoveValidationMessage(const gfx::Rect& anchor_in_root_view);
784 785
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1156 1157
1157 scoped_ptr<ScreenOrientationDispatcherHost> 1158 scoped_ptr<ScreenOrientationDispatcherHost>
1158 screen_orientation_dispatcher_host_; 1159 screen_orientation_dispatcher_host_;
1159 1160
1160 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1161 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1161 }; 1162 };
1162 1163
1163 } // namespace content 1164 } // namespace content
1164 1165
1165 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1166 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698