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

Side by Side Diff: chrome/browser/android/shortcut_helper.h

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Adds comment to explain the reason of an empty param Created 3 years, 11 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_ 5 #ifndef CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
6 #define CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_ 6 #define CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
7 7
8 #include <string>
Xi Han 2017/01/16 16:56:19 Revert this?
gonzalon 2017/01/16 19:50:44 I deleted this, but the reason I added it in the f
9
8 #include "base/android/jni_android.h" 10 #include "base/android/jni_android.h"
9 #include "base/android/jni_weak_ref.h" 11 #include "base/android/jni_weak_ref.h"
10 #include "base/callback_forward.h" 12 #include "base/callback_forward.h"
11 #include "base/macros.h" 13 #include "base/macros.h"
12 #include "chrome/browser/android/shortcut_info.h" 14 #include "chrome/browser/android/shortcut_info.h"
13 #include "chrome/browser/android/webapk/webapk_installer.h" 15 #include "chrome/browser/android/webapk/webapk_installer.h"
14 #include "third_party/skia/include/core/SkBitmap.h" 16 #include "third_party/skia/include/core/SkBitmap.h"
15 17
16 namespace content { 18 namespace content {
17 class BrowserContext; 19 class BrowserContext;
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 static GURL GetScopeFromURL(const GURL& url); 117 static GURL GetScopeFromURL(const GURL& url);
116 118
117 private: 119 private:
118 ShortcutHelper() = delete; 120 ShortcutHelper() = delete;
119 ~ShortcutHelper() = delete; 121 ~ShortcutHelper() = delete;
120 122
121 DISALLOW_COPY_AND_ASSIGN(ShortcutHelper); 123 DISALLOW_COPY_AND_ASSIGN(ShortcutHelper);
122 }; 124 };
123 125
124 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_ 126 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698