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

Side by Side Diff: chrome/browser/web_applications/web_app.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
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 #include "chrome/browser/web_applications/web_app.h" 5 #include "chrome/browser/web_applications/web_app.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <shellapi.h> 8 #include <shellapi.h>
9 #include <shlobj.h> 9 #include <shlobj.h>
10 #endif // defined(OS_WIN) 10 #endif // defined(OS_WIN)
(...skipping 24 matching lines...) Expand all
35 #include "chrome/common/web_apps.h" 35 #include "chrome/common/web_apps.h"
36 36
37 #if defined(OS_LINUX) 37 #if defined(OS_LINUX)
38 #include "base/environment.h" 38 #include "base/environment.h"
39 #endif // defined(OS_LINUX) 39 #endif // defined(OS_LINUX)
40 40
41 #if defined(OS_WIN) 41 #if defined(OS_WIN)
42 #include "base/win/win_util.h" 42 #include "base/win/win_util.h"
43 #include "chrome/common/notification_details.h" 43 #include "chrome/common/notification_details.h"
44 #include "chrome/common/notification_source.h" 44 #include "chrome/common/notification_source.h"
45 #include "gfx/icon_util.h" 45 #include "ui/gfx/icon_util.h"
46 #endif // defined(OS_WIN) 46 #endif // defined(OS_WIN)
47 47
48 namespace { 48 namespace {
49 49
50 #if defined(OS_WIN) 50 #if defined(OS_WIN)
51 const FilePath::CharType kIconChecksumFileExt[] = FILE_PATH_LITERAL(".ico.md5"); 51 const FilePath::CharType kIconChecksumFileExt[] = FILE_PATH_LITERAL(".ico.md5");
52 52
53 // Returns true if |ch| is in visible ASCII range and not one of 53 // Returns true if |ch| is in visible ASCII range and not one of
54 // "/ \ : * ? " < > | ; ,". 54 // "/ \ : * ? " < > | ; ,".
55 bool IsValidFilePathChar(char16 c) { 55 bool IsValidFilePathChar(char16 c) {
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 790
791 void UpdateShortcutForTabContents(TabContents* tab_contents) { 791 void UpdateShortcutForTabContents(TabContents* tab_contents) {
792 #if defined(OS_WIN) 792 #if defined(OS_WIN)
793 // UpdateShortcutWorker will delete itself when it's done. 793 // UpdateShortcutWorker will delete itself when it's done.
794 UpdateShortcutWorker* worker = new UpdateShortcutWorker(tab_contents); 794 UpdateShortcutWorker* worker = new UpdateShortcutWorker(tab_contents);
795 worker->Run(); 795 worker->Run();
796 #endif // defined(OS_WIN) 796 #endif // defined(OS_WIN)
797 } 797 }
798 798
799 }; // namespace web_app 799 }; // namespace web_app
OLDNEW
« no previous file with comments | « chrome/browser/ui/window_snapshot/window_snapshot_x.cc ('k') | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698