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

Unified Diff: content/browser/plugin_loader_posix.cc

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/plugin_loader_posix.h ('k') | content/browser/plugin_loader_posix_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_loader_posix.cc
diff --git a/content/browser/plugin_loader_posix.cc b/content/browser/plugin_loader_posix.cc
index f15218805f5dbc721eb05f4bf651d4cfcae3d5ef..b01f385c076c1b3a148bc614e596e1be1b64cfd1 100644
--- a/content/browser/plugin_loader_posix.cc
+++ b/content/browser/plugin_loader_posix.cc
@@ -131,7 +131,7 @@ void PluginLoaderPosix::OnPluginLoaded(uint32 index,
}
void PluginLoaderPosix::OnPluginLoadFailed(uint32 index,
- const FilePath& plugin_path) {
+ const base::FilePath& plugin_path) {
if (index != next_load_index_) {
LOG(ERROR) << "Received unexpected plugin load failure message for "
<< plugin_path.value() << "; index=" << index;
@@ -144,7 +144,8 @@ void PluginLoaderPosix::OnPluginLoadFailed(uint32 index,
MaybeRunPendingCallbacks();
}
-bool PluginLoaderPosix::MaybeAddInternalPlugin(const FilePath& plugin_path) {
+bool PluginLoaderPosix::MaybeAddInternalPlugin(
+ const base::FilePath& plugin_path) {
for (std::vector<webkit::WebPluginInfo>::iterator it =
internal_plugins_.begin();
it != internal_plugins_.end();
« no previous file with comments | « content/browser/plugin_loader_posix.h ('k') | content/browser/plugin_loader_posix_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698