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

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: Rebase to ToT for commit 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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « chrome/test/base/web_ui_browser_test.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698