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

Side by Side Diff: content/public/browser/plugin_service.h

Issue 10958066: Get rid of the content::NOTIFICATION_APP_ACTIVATED notification since it was fired from Chrome (con… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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
« no previous file with comments | « content/public/browser/notification_types.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PUBLIC_BROWSER_PLUGIN_SERVICE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_PLUGIN_SERVICE_H_
6 #define CONTENT_PUBLIC_BROWSER_PLUGIN_SERVICE_H_ 6 #define CONTENT_PUBLIC_BROWSER_PLUGIN_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 virtual void UnregisterInternalPlugin(const FilePath& path) = 0; 133 virtual void UnregisterInternalPlugin(const FilePath& path) = 0;
134 virtual void RegisterInternalPlugin(const webkit::WebPluginInfo& info, 134 virtual void RegisterInternalPlugin(const webkit::WebPluginInfo& info,
135 bool add_at_beginning) = 0; 135 bool add_at_beginning) = 0;
136 virtual string16 GetPluginGroupName(const std::string& plugin_name) = 0; 136 virtual string16 GetPluginGroupName(const std::string& plugin_name) = 0;
137 137
138 // TODO(dpranke): This should be private. 138 // TODO(dpranke): This should be private.
139 virtual webkit::npapi::PluginList* GetPluginList() = 0; 139 virtual webkit::npapi::PluginList* GetPluginList() = 0;
140 140
141 virtual void SetPluginListForTesting( 141 virtual void SetPluginListForTesting(
142 webkit::npapi::PluginList* plugin_list) = 0; 142 webkit::npapi::PluginList* plugin_list) = 0;
143
144 #if defined(OS_MACOSX)
145 // Called when the application is made active so that modal plugin windows can
146 // be made forward too.
147 virtual void AppActivated() = 0;
148 #endif
143 }; 149 };
144 150
145 } // namespace content 151 } // namespace content
146 152
147 #endif // CONTENT_PUBLIC_BROWSER_PLUGIN_SERVICE_H_ 153 #endif // CONTENT_PUBLIC_BROWSER_PLUGIN_SERVICE_H_
OLDNEW
« no previous file with comments | « content/public/browser/notification_types.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698