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

Side by Side Diff: content/browser/tab_contents/tab_contents.h

Issue 8801002: Remove OnMessageReceived that was using internal content IPCs... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_TAB_CONTENTS_TAB_CONTENTS_H_ 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 void OnDidFailLoadWithError(int64 frame_id, 635 void OnDidFailLoadWithError(int64 frame_id,
636 const GURL& validated_url, 636 const GURL& validated_url,
637 bool is_main_frame, 637 bool is_main_frame,
638 int error_code, 638 int error_code,
639 const string16& error_description); 639 const string16& error_description);
640 void OnUpdateContentRestrictions(int restrictions); 640 void OnUpdateContentRestrictions(int restrictions);
641 void OnGoToEntryAtOffset(int offset); 641 void OnGoToEntryAtOffset(int offset);
642 void OnUpdateZoomLimits(int minimum_percent, 642 void OnUpdateZoomLimits(int minimum_percent,
643 int maximum_percent, 643 int maximum_percent,
644 bool remember); 644 bool remember);
645 void OnFocusedNodeChanged(bool is_editable_node);
646 void OnEnumerateDirectory(int request_id, const FilePath& path); 645 void OnEnumerateDirectory(int request_id, const FilePath& path);
647 void OnJSOutOfMemory(); 646 void OnJSOutOfMemory();
648 void OnRegisterProtocolHandler(const std::string& protocol, 647 void OnRegisterProtocolHandler(const std::string& protocol,
649 const GURL& url, 648 const GURL& url,
650 const string16& title); 649 const string16& title);
651 void OnFindReply(int request_id, int number_of_matches, 650 void OnFindReply(int request_id, int number_of_matches,
652 const gfx::Rect& selection_rect, int active_match_ordinal, 651 const gfx::Rect& selection_rect, int active_match_ordinal,
653 bool final_update); 652 bool final_update);
654 void OnCrashedPlugin(const FilePath& plugin_path); 653 void OnCrashedPlugin(const FilePath& plugin_path);
655 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); 654 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy);
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 // (full-page plugins for now only) permissions. 883 // (full-page plugins for now only) permissions.
885 int content_restrictions_; 884 int content_restrictions_;
886 885
887 // Our view type. Default is VIEW_TYPE_TAB_CONTENTS. 886 // Our view type. Default is VIEW_TYPE_TAB_CONTENTS.
888 content::ViewType view_type_; 887 content::ViewType view_type_;
889 888
890 DISALLOW_COPY_AND_ASSIGN(TabContents); 889 DISALLOW_COPY_AND_ASSIGN(TabContents);
891 }; 890 };
892 891
893 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 892 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698