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

Side by Side Diff: webkit/plugins/npapi/webplugin_impl.cc

Issue 12163003: Add FilePath to base namespace. (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/npapi/webplugin_impl.h ('k') | webkit/plugins/npapi/webplugin_page_delegate.h » ('j') | 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 #include "webkit/plugins/npapi/webplugin_impl.h" 5 #include "webkit/plugins/npapi/webplugin_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/memory/linked_ptr.h" 9 #include "base/memory/linked_ptr.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 457
458 bool WebPluginImpl::isPlaceholder() { 458 bool WebPluginImpl::isPlaceholder() {
459 return false; 459 return false;
460 } 460 }
461 461
462 // ----------------------------------------------------------------------------- 462 // -----------------------------------------------------------------------------
463 463
464 WebPluginImpl::WebPluginImpl( 464 WebPluginImpl::WebPluginImpl(
465 WebFrame* webframe, 465 WebFrame* webframe,
466 const WebPluginParams& params, 466 const WebPluginParams& params,
467 const FilePath& file_path, 467 const base::FilePath& file_path,
468 const base::WeakPtr<WebPluginPageDelegate>& page_delegate) 468 const base::WeakPtr<WebPluginPageDelegate>& page_delegate)
469 : windowless_(false), 469 : windowless_(false),
470 window_(gfx::kNullPluginWindow), 470 window_(gfx::kNullPluginWindow),
471 accepts_input_events_(false), 471 accepts_input_events_(false),
472 page_delegate_(page_delegate), 472 page_delegate_(page_delegate),
473 webframe_(webframe), 473 webframe_(webframe),
474 delegate_(NULL), 474 delegate_(NULL),
475 container_(NULL), 475 container_(NULL),
476 plugin_url_(params.url), 476 plugin_url_(params.url),
477 load_manually_(params.loadManually), 477 load_manually_(params.loadManually),
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
1368 webframe_->setReferrerForRequest(*request, plugin_url_); 1368 webframe_->setReferrerForRequest(*request, plugin_url_);
1369 break; 1369 break;
1370 1370
1371 default: 1371 default:
1372 break; 1372 break;
1373 } 1373 }
1374 } 1374 }
1375 1375
1376 } // namespace npapi 1376 } // namespace npapi
1377 } // namespace webkit 1377 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/npapi/webplugin_impl.h ('k') | webkit/plugins/npapi/webplugin_page_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698