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

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

Issue 5917001: Change the "Disable outdated plug-ins" lab to block them instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename command line switch and viewmsg Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 6 #define CHROME_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 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 const gfx::Rect& selection_rect, 889 const gfx::Rect& selection_rect,
890 int active_match_ordinal, 890 int active_match_ordinal,
891 bool final_update); 891 bool final_update);
892 virtual void GoToEntryAtOffset(int offset); 892 virtual void GoToEntryAtOffset(int offset);
893 virtual void OnMissingPluginStatus(int status); 893 virtual void OnMissingPluginStatus(int status);
894 virtual void OnCrashedPlugin(const FilePath& plugin_path); 894 virtual void OnCrashedPlugin(const FilePath& plugin_path);
895 virtual void OnCrashedWorker(); 895 virtual void OnCrashedWorker();
896 virtual void OnDidGetApplicationInfo(int32 page_id, 896 virtual void OnDidGetApplicationInfo(int32 page_id,
897 const WebApplicationInfo& info); 897 const WebApplicationInfo& info);
898 virtual void OnInstallApplication(const WebApplicationInfo& info); 898 virtual void OnInstallApplication(const WebApplicationInfo& info);
899 virtual void OnDisabledOutdatedPlugin(const string16& name, 899 virtual void OnBlockedOutdatedPlugin(const string16& name,
900 const GURL& update_url); 900 const GURL& update_url);
901 virtual void OnPageContents(const GURL& url, 901 virtual void OnPageContents(const GURL& url,
902 int renderer_process_id, 902 int renderer_process_id,
903 int32 page_id, 903 int32 page_id,
904 const string16& contents, 904 const string16& contents,
905 const std::string& language, 905 const std::string& language,
906 bool page_translatable); 906 bool page_translatable);
907 virtual void OnPageTranslated(int32 page_id, 907 virtual void OnPageTranslated(int32 page_id,
908 const std::string& original_lang, 908 const std::string& original_lang,
909 const std::string& translated_lang, 909 const std::string& translated_lang,
910 TranslateErrors::Type error_type); 910 TranslateErrors::Type error_type);
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 // Content restrictions, used to disable print/copy etc based on content's 1340 // Content restrictions, used to disable print/copy etc based on content's
1341 // (full-page plugins for now only) permissions. 1341 // (full-page plugins for now only) permissions.
1342 int content_restrictions_; 1342 int content_restrictions_;
1343 1343
1344 // --------------------------------------------------------------------------- 1344 // ---------------------------------------------------------------------------
1345 1345
1346 DISALLOW_COPY_AND_ASSIGN(TabContents); 1346 DISALLOW_COPY_AND_ASSIGN(TabContents);
1347 }; 1347 };
1348 1348
1349 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1349 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_delegate.h ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698