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

Side by Side Diff: chrome/browser/ui/cocoa/extensions/extension_action_platform_delegate_cocoa.mm

Issue 1901833002: [Cleanup] No wchar_t for Cocoa. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/info_bubble_window.mm » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #import "chrome/browser/ui/cocoa/extensions/extension_action_platform_delegate_c ocoa.h" 5 #import "chrome/browser/ui/cocoa/extensions/extension_action_platform_delegate_c ocoa.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 gfx::NativeWindow window = payload->second; 144 gfx::NativeWindow window = payload->second;
145 if (window == controller_->browser()->window()->GetNativeWindow() && 145 if (window == controller_->browser()->window()->GetNativeWindow() &&
146 extension_id == controller_->extension()->id() && 146 extension_id == controller_->extension()->id() &&
147 controller_->IsEnabled( 147 controller_->IsEnabled(
148 controller_->view_delegate()->GetCurrentWebContents())) { 148 controller_->view_delegate()->GetCurrentWebContents())) {
149 controller_->ExecuteAction(true); 149 controller_->ExecuteAction(true);
150 } 150 }
151 break; 151 break;
152 } 152 }
153 default: 153 default:
154 NOTREACHED() << L"Unexpected notification"; 154 NOTREACHED() << "Unexpected notification";
155 } 155 }
156 } 156 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/info_bubble_window.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698