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

Side by Side Diff: chrome/browser/ui/views/frame/web_app_left_header_view_ash.cc

Issue 2215223003: Moves most frame related classes to ash/common/frame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 4 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
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 #include "chrome/browser/ui/views/frame/web_app_left_header_view_ash.h" 5 #include "chrome/browser/ui/views/frame/web_app_left_header_view_ash.h"
6 6
7 #include "ash/frame/caption_buttons/frame_caption_button.h" 7 #include "ash/common/frame/caption_buttons/frame_caption_button.h"
8 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h" 8 #include "ash/common/frame/caption_buttons/frame_caption_button_container_view.h "
9 #include "chrome/app/chrome_command_ids.h" 9 #include "chrome/app/chrome_command_ids.h"
10 #include "chrome/browser/ssl/chrome_security_state_model_client.h" 10 #include "chrome/browser/ssl/chrome_security_state_model_client.h"
11 #include "chrome/browser/ui/browser_commands.h" 11 #include "chrome/browser/ui/browser_commands.h"
12 #include "chrome/browser/ui/views/frame/browser_view.h" 12 #include "chrome/browser/ui/views/frame/browser_view.h"
13 #include "components/toolbar/toolbar_model.h" 13 #include "components/toolbar/toolbar_model.h"
14 #include "content/public/browser/navigation_entry.h" 14 #include "content/public/browser/navigation_entry.h"
15 #include "grit/ash_resources.h" 15 #include "grit/ash_resources.h"
16 #include "ui/gfx/vector_icons_public.h" 16 #include "ui/gfx/vector_icons_public.h"
17 #include "ui/views/layout/box_layout.h" 17 #include "ui/views/layout/box_layout.h"
18 18
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 return; 90 return;
91 91
92 ChromeSecurityStateModelClient* security_model_client = 92 ChromeSecurityStateModelClient* security_model_client =
93 ChromeSecurityStateModelClient::FromWebContents(tab); 93 ChromeSecurityStateModelClient::FromWebContents(tab);
94 DCHECK(security_model_client); 94 DCHECK(security_model_client);
95 95
96 chrome::ShowWebsiteSettings(browser_view_->browser(), tab, 96 chrome::ShowWebsiteSettings(browser_view_->browser(), tab,
97 nav_entry->GetVirtualURL(), 97 nav_entry->GetVirtualURL(),
98 security_model_client->GetSecurityInfo()); 98 security_model_client->GetSecurityInfo());
99 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698