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

Side by Side Diff: ceee/ie/plugin/toolband/tool_band.cc

Issue 5271011: Avoid double-setting of the tool band ID in the CEEE executors manager.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
« no previous file with comments | « ceee/ie/plugin/toolband/tool_band.h ('k') | ceee/ie/plugin/toolband/tool_band_unittest.cc » ('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) 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 // IE toolband implementation. 5 // IE toolband implementation.
6 #include "ceee/ie/plugin/toolband/tool_band.h" 6 #include "ceee/ie/plugin/toolband/tool_band.h"
7 7
8 #include <atlsafe.h> 8 #include <atlsafe.h>
9 #include <atlstr.h> 9 #include <atlstr.h>
10 #include <shlguid.h> 10 #include <shlguid.h>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 _ATL_FUNC_INFO ToolBand::handler_type_idispatch_variantref_ = 50 _ATL_FUNC_INFO ToolBand::handler_type_idispatch_variantref_ =
51 { CC_STDCALL, VT_EMPTY, 2, { VT_DISPATCH, VT_VARIANT | VT_BYREF } }; 51 { CC_STDCALL, VT_EMPTY, 2, { VT_DISPATCH, VT_VARIANT | VT_BYREF } };
52 52
53 ToolBand::ToolBand() 53 ToolBand::ToolBand()
54 : already_tried_installing_(false), 54 : already_tried_installing_(false),
55 own_line_flag_(false), 55 own_line_flag_(false),
56 already_checked_own_line_flag_(false), 56 already_checked_own_line_flag_(false),
57 listening_to_browser_events_(false), 57 listening_to_browser_events_(false),
58 band_id_(0), 58 band_id_(0),
59 is_quitting_(false), 59 is_quitting_(false),
60 already_sent_id_to_bho_(false),
60 current_width_(kToolBandMinWidth), 61 current_width_(kToolBandMinWidth),
61 current_height_(kToolBandHeight) { 62 current_height_(kToolBandHeight) {
62 TRACE_EVENT_BEGIN("ceee.toolband", this, ""); 63 TRACE_EVENT_BEGIN("ceee.toolband", this, "");
63 } 64 }
64 65
65 ToolBand::~ToolBand() { 66 ToolBand::~ToolBand() {
66 TRACE_EVENT_END("ceee.toolband", this, ""); 67 TRACE_EVENT_END("ceee.toolband", this, "");
67 } 68 }
68 69
69 HRESULT ToolBand::FinalConstruct() { 70 HRESULT ToolBand::FinalConstruct() {
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 // on overinstall when Chrome has already auto-updated. 523 // on overinstall when Chrome has already auto-updated.
523 // 524 //
524 // If it turns out no extension is installed, we will handle that 525 // If it turns out no extension is installed, we will handle that
525 // error in the OnCfGetEnabledExtensionsComplete callback. 526 // error in the OnCfGetEnabledExtensionsComplete callback.
526 chrome_frame_->getEnabledExtensions(); 527 chrome_frame_->getEnabledExtensions();
527 } 528 }
528 529
529 STDMETHODIMP_(void) ToolBand::OnCfGetEnabledExtensionsComplete( 530 STDMETHODIMP_(void) ToolBand::OnCfGetEnabledExtensionsComplete(
530 SAFEARRAY* extension_directories) { 531 SAFEARRAY* extension_directories) {
531 CComSafeArray<BSTR> directories; 532 CComSafeArray<BSTR> directories;
532 EnsureBhoIsAvailable(); // We will require a working bho to do anything. 533 EnsureBhoIsAvailable(); // We will require a working bho to do anything.
motek. 2010/11/30 22:33:09 So, what about 'if (SUCCEEDED(EnsureBhoIsAvailable
Cindy Lau 2010/12/01 00:01:36 The other thing EnsureBhoIsAvailable does is to ac
motek. 2010/12/01 00:13:49 On 2010/12/01 00:01:36, Cindy Lau wrote: Yes, my p
533 directories.Attach(extension_directories); // MUST DETACH BEFORE RETURNING 534 directories.Attach(extension_directories); // MUST DETACH BEFORE RETURNING
534 535
535 // TODO(joi@chromium.org) Handle multiple extensions. 536 // TODO(joi@chromium.org) Handle multiple extensions.
536 if (directories.GetCount() > 0) { 537 if (directories.GetCount() > 0) {
537 // If our extension_path is not a CRX, it MUST be the same as the installed 538 // If our extension_path is not a CRX, it MUST be the same as the installed
538 // extension path which would be an exploded extension. 539 // extension path which would be an exploded extension.
539 // If you get this DCHECK, you may have changed your registry settings to 540 // If you get this DCHECK, you may have changed your registry settings to
540 // debug with an exploded extension, but you didn't uninstall the previous 541 // debug with an exploded extension, but you didn't uninstall the previous
541 // extension, either via the Chrome UI or by simply wiping out your 542 // extension, either via the Chrome UI or by simply wiping out your
542 // profile folder. 543 // profile folder.
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 chrome_frame_internal_.QueryFrom(chrome_frame_); 736 chrome_frame_internal_.QueryFrom(chrome_frame_);
736 if (chrome_frame_internal_) { 737 if (chrome_frame_internal_) {
737 return chrome_frame_internal_->getSessionId(session_id); 738 return chrome_frame_internal_->getSessionId(session_id);
738 } 739 }
739 } 740 }
740 NOTREACHED(); 741 NOTREACHED();
741 return E_UNEXPECTED; 742 return E_UNEXPECTED;
742 } 743 }
743 744
744 HRESULT ToolBand::SendSessionIdToBho(IUnknown* bho) { 745 HRESULT ToolBand::SendSessionIdToBho(IUnknown* bho) {
746 if (already_sent_id_to_bho_)
747 return S_FALSE;
motek. 2010/11/30 22:33:09 I am not sure if the return value of 'Ensure' shou
Cindy Lau 2010/12/01 00:01:36 See my comment above.
745 // Now send the tool band's session ID to the BHO. 748 // Now send the tool band's session ID to the BHO.
746 ScopedComPtr<ICeeeBho> ceee_bho; 749 ScopedComPtr<ICeeeBho> ceee_bho;
747 HRESULT hr = ceee_bho.QueryFrom(bho); 750 HRESULT hr = ceee_bho.QueryFrom(bho);
748 if (SUCCEEDED(hr)) { 751 if (SUCCEEDED(hr)) {
749 int session_id = 0; 752 int session_id = 0;
750 hr = GetSessionId(&session_id); 753 hr = GetSessionId(&session_id);
751 if (SUCCEEDED(hr)) { 754 if (SUCCEEDED(hr)) {
752 return ceee_bho->SetToolBandSessionId(session_id); 755 hr = ceee_bho->SetToolBandSessionId(session_id);
756 if (SUCCEEDED(hr))
757 already_sent_id_to_bho_ = true;
758 return hr;
753 } 759 }
754 } 760 }
755 return E_FAIL; 761 return E_FAIL;
756 } 762 }
OLDNEW
« no previous file with comments | « ceee/ie/plugin/toolband/tool_band.h ('k') | ceee/ie/plugin/toolband/tool_band_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698